This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Disable libgcj on SPARC/Solaris 2.5.1 and 2.6


Recent (apparently massive) changes in libgcj have made it impossible to build 
it on Solaris 2.5.1 with a reasonable amount of disk space: because of the 
limitation on the length of the command line, the final linking is done 
incrementally and this now consumes a huge amount of disk space.  Moreover 
the new POSIX ProcessManager, based on threads and signals, doesn't work 
correctly.  Same on Solaris 2.6.

Bootstrapped on sparc-sun-solaris2.5.1 and sparc-sun-solaris2.6, installed on 
mainline.


2005-02-21  Eric Botcazou  <ebotcazou@libertysurf.fr>

	PR libgcj/10353
	* configure.in (noconfigdirs) <sparc-*-solaris2.[0-6]>: Add libgcj.
	* configure: Regenerate.

-- 
Eric Botcazou
Index: configure.in
===================================================================
RCS file: /cvs/gcc/gcc/configure.in,v
retrieving revision 1.339
diff -u -r1.339 configure.in
--- configure.in	29 Jan 2005 04:22:08 -0000	1.339
+++ configure.in	20 Feb 2005 22:57:22 -0000
@@ -753,6 +753,9 @@
            use_gnu_ld=no
     fi
     ;;
+  sparc-*-solaris2.[[0-6]] | sparc-*-solaris2.[[0-6]].*)
+    noconfigdirs="$noconfigdirs ${libgcj}"
+    ;;
   sparc-*-solaris* | sparc64-*-solaris* | sparcv9-*-solaris*)
     ;;
   v810-*-*)

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