This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Web patch
- To: java-patches at gcc dot gnu dot org
- Subject: Web patch
- From: Bryce McKinlay <bryce at waitaki dot otago dot ac dot nz>
- Date: Tue, 19 Jun 2001 18:38:14 +1200
I've applied these updates to the web pages to account for the GCC 3.0
release.
regards
Bryce.
Index: index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/java/index.html,v
retrieving revision 1.81
diff -u -r1.81 index.html
--- index.html 2001/06/05 14:13:18 1.81
+++ index.html 2001/06/19 05:56:40
@@ -66,6 +66,14 @@
<table>
<tr><td valign="top">
+<b>June 18, 2001</b>
+</td><td>
+<B>GCC 3.0 has been released!</B> Everything you need to build and run GCJ is now
+included in a single source distribution. Download it from one of our
+<A HREF="../mirrors.html">mirror sites</A>.
+</td></tr>
+
+<tr><td valign="top">
<b>June 4, 2001</b>
</td><td>
Per Bothner of Brainfood Inc has implemented an invocation interface
@@ -83,41 +91,6 @@
improve performance for applications which do a lot of synchronization.
Currently, this code is enabled for IA-64 and X86 Linux.
</td></tr>
-
-<tr><td valign="top">
-<b>April 25, 2001</b>
-</td><td>
-Bryce McKinlay merged <tt>java.security</tt> with Classpath.
-The new package is now JDK 1.2 compliant, and much more complete.
-</td></tr>
-
-<tr><td valign="top">
-<b>March 25, 2001</b>
-</td><td>
-It is now possible to call methods on Java interface references from C++ code
-via <A HREF="papers/cni/t1.html">CNI</A>, thanks to Bryce McKinlay's compiler
-work. <A HREF=http://gcc.gnu.org/ml/gcc-patches/2001-03/msg01483.html>Details.</A>
-</td></tr>
-
-<tr><td valign="top">
-<b>March 25, 2001</b>
-</td><td>
-Kevin B. Hendricks implemented the neccessary FFI support to get the
-libgcj interpreter running on PowerPC. This is now one of our fully supported
-targets!
-</td></tr>
-
-<tr><td valign="top">
-<b>March 7, 2001</b>
-</td><td>
-The first snapshot from the code branch that will become GCC 3.0 is
-<A HREF="ftp://ftp.freesoftware.com/pub/sourceware/gcc/snapshots/">
-now available</A>. Snapshots from this branch will be made weekly. These
-include everything you need to build and run GCJ, and should be much
-more stable than the main development tree -- so try them out and help us
-find bugs!
-</td></tr>
-
<tr><td valign="top">
</td><td>
Index: download.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/java/download.html,v
retrieving revision 1.26
diff -u -r1.26 download.html
--- download.html 2001/02/09 06:15:36 1.26
+++ download.html 2001/06/19 05:56:40
@@ -20,24 +20,28 @@
</table>
<br>
-The most current official release of GCJ/libgcj is 2.95.1. It's
-broken, and we don't recommend using it. Some time soon, GCC 3.0
-will contain everything you need in a single source release.
-<p>
-We now recommend that you obtain development sources (see below), in
-preference to the old release version.
-<!---
+The most current official release of GCJ and libgcj is 3.0, which is included
+with the GCC 3.0 source distribution.
<p>
Follow the links on <a href="http://gcc.gnu.org/releases.html">http://gcc.gnu.org/releases.html</a>
to download the compiler. You will need either the full distribution,
or each of the Core Compiler, C++ and Java distributions.
<p>
-libgcj 2.95.1 is available
-from <a href="ftp://sources.redhat.com/pub/java/libgcj-2.95.1.tar.gz">
-ftp://sources.redhat.com/pub/java/libgcj-2.95.1.tar.gz</a> (but you
-haven't heard that from us).
--->
+
+
+<table border="0" cellpadding="4" width="95%">
+<tr bgcolor="#b0d0ff">
+ <th align="left">
+ Precompiled Binary Packages
+ </th>
+</tr>
+</table>
+<p>
+Many GNU/Linux distributions now include relatively recent, "QA'ed" versions of
+GCJ which should work out-of-the-box. Look for packages like "gcc-java" and
+"gcc-libgcj" to add Java language support to your existing GCC installation.
<p>
+
<table border="0" cellpadding="4" width="95%">
<tr bgcolor="#b0d0ff">
<th align="left">
@@ -61,20 +65,9 @@
<p>
<h3>Snapshots</h3>
-Snapshots are made about once a week. They are available from
-<a href="http://gcc.gnu.org/snapshots.html">
-http://gcc.gnu.org/snapshots.html</a>. Starting from 12/11/2000, they
-contain everything you need (compiler + java runtime.)
-<p>
-
-<h3>RPM</h3>
-<UL>
-<LI>Red Hat Linux 7 includes relatively recent, "QA'ed" snapshots of the gcj and
-libgcj development trees which should work out-of-the-box. Look for the
-<B>gcc-java</B>, <B>libgcj</B>, and <B>libgcj-devel</B> RPM packages on
-disc 2.
-</LI>
-</UL>
+Snapshots of the current CVS tree are made about once a week. They are
+available from <a href="http://gcc.gnu.org/snapshots.html">
+http://gcc.gnu.org/snapshots.html</a>.
<p>
<a name=cvs>
Index: old-news.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/java/old-news.html,v
retrieving revision 1.10
diff -u -r1.10 old-news.html
--- old-news.html 2001/03/26 08:35:41 1.10
+++ old-news.html 2001/06/19 05:56:40
@@ -10,6 +10,40 @@
<table>
<tr><td valign="top">
+<b>April 25, 2001</b>
+</td><td>
+Bryce McKinlay merged <tt>java.security</tt> with Classpath.
+The new package is now JDK 1.2 compliant, and much more complete.
+</td></tr>
+
+<tr><td valign="top">
+<b>March 25, 2001</b>
+</td><td>
+It is now possible to call methods on Java interface references from C++ code
+via <A HREF="papers/cni/t1.html">CNI</A>, thanks to Bryce McKinlay's compiler
+work. <A HREF=http://gcc.gnu.org/ml/gcc-patches/2001-03/msg01483.html>Details.</A>
+</td></tr>
+
+<tr><td valign="top">
+<b>March 25, 2001</b>
+</td><td>
+Kevin B. Hendricks implemented the neccessary FFI support to get the
+libgcj interpreter running on PowerPC. This is now one of our fully supported
+targets!
+</td></tr>
+
+<tr><td valign="top">
+<b>March 7, 2001</b>
+</td><td>
+The first snapshot from the code branch that will become GCC 3.0 is
+<A HREF="ftp://ftp.freesoftware.com/pub/sourceware/gcc/snapshots/">
+now available</A>. Snapshots from this branch will be made weekly. These
+include everything you need to build and run GCJ, and should be much
+more stable than the main development tree -- so try them out and help us
+find bugs!
+</td></tr>
+
+<tr><td valign="top">
<b>February 8, 2001</b>
</td><td>
Made use of Warren Levy's change to the Mauve testsuite to handle regressions.