public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* Broken link on gcc.gnu.org frontpage
@ 2002-07-21 16:20 Daniel Burrows
  2002-07-23 10:57 ` PATCH for " Gerald Pfeifer
  0 siblings, 1 reply; 4+ messages in thread
From: Daniel Burrows @ 2002-07-21 16:20 UTC (permalink / raw)
  To: gcc

  The frontpage says:

"Pending release series: GCC 3.2 scheduled for 2002-07-2x"

  GCC 3.2 is a link to http://gcc.gnu.org/gcc-3.2/ -- but when I visit
that link, I get a 403 Forbidden error.  gcc@gnu.org is the contact address
listed on the page, so I'm sending this message to you :)

  Daniel

-- 
/---------------------- Daniel Burrows <dnb114@psu.edu> ----------------------\
|                          "Inconceivable!"                                   |
|                            -- "The Princess Bride"                          |
\------- (if (not (understand-this)) (go-to http://www.schemers.org)) --------/

^ permalink raw reply	[flat|nested] 4+ messages in thread

* PATCH for Re: Broken link on gcc.gnu.org frontpage
  2002-07-21 16:20 Broken link on gcc.gnu.org frontpage Daniel Burrows
@ 2002-07-23 10:57 ` Gerald Pfeifer
  2002-07-23 21:44   ` Mike Stump
  0 siblings, 1 reply; 4+ messages in thread
From: Gerald Pfeifer @ 2002-07-23 10:57 UTC (permalink / raw)
  To: Daniel Burrows; +Cc: gcc, gcc-patches

On Sun, 21 Jul 2002, Daniel Burrows wrote:
>   The frontpage says:
>
> "Pending release series: GCC 3.2 scheduled for 2002-07-2x"
>
>   GCC 3.2 is a link to http://gcc.gnu.org/gcc-3.2/ -- but when I visit
> that link, I get a 403 Forbidden error.  gcc@gnu.org is the contact address
> listed on the page, so I'm sending this message to you :)

Fix thusly, with a few additional tweaks.

(This main GCC 3.2 page will contain a relatively generic announcement
and will be added only directly before the actual release, but the patch
below adds a proper link for now.)

Gerald

Index: index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/index.html,v
retrieving revision 1.323
diff -u -3 -p -r1.323 index.html
--- index.html	22 Jul 2002 10:00:46 -0000	1.323
+++ index.html	23 Jul 2002 12:50:26 -0000
@@ -157,7 +157,7 @@ and automated testers</a> to maintain an
 </dd>

 <dt><strong>Pending release series:</strong>
-  <a href="gcc-3.2/">GCC 3.2</a> scheduled for 2002-07-2x
+  <a href="gcc-3.2/changes.html">GCC 3.2</a> scheduled for 2002-07-2x
 </dt><dd>
   <br />
   Changes require approval by release manager.
@@ -173,7 +173,7 @@ and automated testers</a> to maintain an
 -->

 <dt><strong>Active development (mainline):</strong>
-  will become GCC 3.3
+  will become <a href="gcc-3.3/changes.html">GCC 3.3</a>
 </dt><dd>
   <a href="develop.html#stage2">Stage 2</a>; open for all maintainers.
 </dd>
Index: gcc-3.2/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.2/changes.html,v
retrieving revision 1.23
diff -u -3 -p -r1.23 changes.html
--- gcc-3.2/changes.html	21 Jul 2002 10:55:13 -0000	1.23
+++ gcc-3.2/changes.html	23 Jul 2002 12:50:26 -0000
@@ -14,11 +14,11 @@
 <h2>Caveats</h2>

   <ul>
-    <li>This GCC release is based on the GCC 3.1 sourcebase,
-    but it has a number of C++ ABI fixes in it. As a result,
-    the C++ comiler in this release is binary incompatible with
-    the C++ compilers found in earlier GCC releases, including
-    GCC 3.1 and GCC 3.1.1.</li>
+    <li>This GCC release is based on the GCC 3.1 sourcebase, and thus has
+    all the <a href="../gcc-3.1/changes.html">changes in the GCC 3.1 series</a>.
+    In addition, GCC 3.1 has a number of C++ ABI fixes in it which make its C++
+    compiler binary incompatible with the C++ compilers found in earlier GCC
+    releases, including GCC 3.1 and GCC 3.1.1.</li>
   </ul>



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: PATCH for Re: Broken link on gcc.gnu.org frontpage
  2002-07-23 10:57 ` PATCH for " Gerald Pfeifer
@ 2002-07-23 21:44   ` Mike Stump
  2002-07-24  9:01     ` Gerald Pfeifer
  0 siblings, 1 reply; 4+ messages in thread
From: Mike Stump @ 2002-07-23 21:44 UTC (permalink / raw)
  To: Gerald Pfeifer; +Cc: Daniel Burrows, gcc, gcc-patches

On Tuesday, July 23, 2002, at 05:52 AM, Gerald Pfeifer wrote:
> -    <li>This GCC release is based on the GCC 3.1 sourcebase,
> -    but it has a number of C++ ABI fixes in it. As a result,
> -    the C++ comiler in this release is binary incompatible with
> -    the C++ compilers found in earlier GCC releases, including
> -    GCC 3.1 and GCC 3.1.1.</li>
> +    <li>This GCC release is based on the GCC 3.1 sourcebase, and thus 
> has
> +    all the <a href="../gcc-3.1/changes.html">changes in the GCC 3.1 
> series</a>.
> +    In addition, GCC 3.1 has a number of C++ ABI fixes in it which 
> make its C++
> +    compiler binary incompatible with the C++ compilers found in 
> earlier GCC
> +    releases, including GCC 3.1 and GCC 3.1.1.</li>

[ Blink ]

gcc 3.1 has a number of fixes which make it binary incompatible with 
gcc 3.1.

I cannot see how this can be true.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: PATCH for Re: Broken link on gcc.gnu.org frontpage
  2002-07-23 21:44   ` Mike Stump
@ 2002-07-24  9:01     ` Gerald Pfeifer
  0 siblings, 0 replies; 4+ messages in thread
From: Gerald Pfeifer @ 2002-07-24  9:01 UTC (permalink / raw)
  To: Mike Stump; +Cc: Daniel Burrows, gcc, gcc-patches

On Tue, 23 Jul 2002, Mike Stump wrote:
> gcc 3.1 has a number of fixes which make it binary incompatible with
> gcc 3.1.

Oops. Fixed thusly.

I also remove "in it" and made it clear that the binaries generated are
incompatible.

Gerald

Index: changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.2/changes.html,v
retrieving revision 1.24
diff -u -3 -p -r1.24 changes.html
--- changes.html	23 Jul 2002 12:52:07 -0000	1.24
+++ changes.html	24 Jul 2002 07:19:13 -0000
@@ -16,9 +16,10 @@
   <ul>
     <li>This GCC release is based on the GCC 3.1 sourcebase, and thus has
     all the <a href="../gcc-3.1/changes.html">changes in the GCC 3.1 series</a>.
-    In addition, GCC 3.1 has a number of C++ ABI fixes in it which make its C++
-    compiler binary incompatible with the C++ compilers found in earlier GCC
-    releases, including GCC 3.1 and GCC 3.1.1.</li>
+    In addition, GCC 3.2 has a number of C++ ABI fixes which make its
+    C++ compiler generate binary code which is incompatible with the C++
+    compilers found in earlier GCC releases, including GCC 3.1 and
+    GCC 3.1.1.</li>
   </ul>



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2002-07-24  7:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-07-21 16:20 Broken link on gcc.gnu.org frontpage Daniel Burrows
2002-07-23 10:57 ` PATCH for " Gerald Pfeifer
2002-07-23 21:44   ` Mike Stump
2002-07-24  9:01     ` Gerald Pfeifer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).