This is the mail archive of the
java-patches@sources.redhat.com
mailing list for the Java project.
Enable libgcj for Linux targets
- To: gcc-patches at gcc dot gnu dot org, java-patches at sources dot redhat dot com
- Subject: Enable libgcj for Linux targets
- From: Bryce McKinlay <bryce at albatross dot co dot nz>
- Date: Mon, 22 Jan 2001 14:40:42 +1300
Now that the V3 ABI is supported by Java, libgcj should build and work
out-of-the-box on most linux platforms, at least.
This patch removes libgcj from linux $noconfigdirs so that it will be
built by default when GCC is configured with
"--enable-languages=java,...". Hopefully this can also be done for other
platforms once some build portability issues are resolved.
ok to commit?
regards
[ bryce ]
2001-01-22 Bryce McKinlay <bryce@albatross.co.nz>
* configure.in: Enable libgcj for linux targets.
Index: configure.in
===================================================================
RCS file: /cvs/gcc/egcs/configure.in,v
retrieving revision 1.84
diff -u -r1.84 configure.in
--- configure.in 2001/01/02 15:36:25 1.84
+++ configure.in 2001/01/22 01:32:30
@@ -606,7 +606,7 @@
;;
alpha*-*-linux*)
# newlib is not 64 bit ready
- noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}"
+ noconfigdirs="$noconfigdirs target-newlib target-libgloss"
# linux has rx in libc
skipdirs="$skipdirs target-librx"
;;
@@ -739,7 +739,6 @@
fi
;;
*-*-linux*)
- noconfigdirs="${libgcj}"
# linux has rx in libc
skipdirs="$skipdirs target-librx"
;;