summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew John Hughes <gnu_andrew@member.fsf.org>2007-10-12 14:20:19 +0000
committerAndrew John Hughes <gnu_andrew@member.fsf.org>2007-10-12 14:20:19 +0000
commitd94b8502ddc1019366c5d4f0801a6569d2ec6582 (patch)
tree7170577e44bad42445b11bb81835387d48ef69f5
parentf9f3774583d5261a5a54913385d0cb9f4c032fee (diff)
downloadclasspath-d94b8502ddc1019366c5d4f0801a6569d2ec6582.tar.gz
2007-10-12 Andrew John Hughes <gnu_andrew@member.fsf.org>
PR classpath/33622: * lib/Makefile.am: Add -J-mX512M option to allow javac enough memory to build Classpath.
-rw-r--r--ChangeLog6
-rw-r--r--lib/Makefile.am2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 53708e588..2ffd54cd4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-10-12 Andrew John Hughes <gnu_andrew@member.fsf.org>
+
+ PR classpath/33622:
+ * lib/Makefile.am: Add -J-mX512M option to
+ allow javac enough memory to build Classpath.
+
2007-10-12 Roman Kennke <roman.kennke@aicas.com>
* NEWS: Added entry for Escher peers.
diff --git a/lib/Makefile.am b/lib/Makefile.am
index 3cec4bbaf..d147f5bd8 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -12,7 +12,7 @@ if FOUND_ECJ
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.