This is the mail archive of the java-patches@sources.redhat.com mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Enable libgcj for Linux targets


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"
     ;;

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]