I've committed the attached patch so that javac has enough memory to build
the Classpath libraries.

2007-10-12  Andrew John Hughes  <[EMAIL PROTECTED]>

        PR classpath/33622:
        * lib/Makefile.am: Add -J-mX512M option to
        allow javac enough memory to build Classpath.

-- 
Andrew :)

Index: lib/Makefile.am
===================================================================
RCS file: /sources/classpath/classpath/lib/Makefile.am,v
retrieving revision 1.136
diff -u -r1.136 Makefile.am
--- lib/Makefile.am	8 Oct 2007 23:09:17 -0000	1.136
+++ lib/Makefile.am	12 Oct 2007 13:51:42 -0000
@@ -12,7 +12,7 @@
 JCOMPILER = $(ECJ) -1.5 -warn:-deprecation,serial,typeHiding,unchecked,unused,varargsCast -proceedOnError -bootclasspath '' -classpath $(compile_classpath) -d . @classes
 else
 if FOUND_JAVAC
-JCOMPILER = $(JAVAC) -bootclasspath '' -classpath $(compile_classpath) -d . @classes
+JCOMPILER = $(JAVAC) -J-Xmx512M -bootclasspath '' -classpath $(compile_classpath) -d . @classes
 #else
 #if FOUND_GCJ
 ## This should never be used when gcj is the compiler.

Reply via email to