summaryrefslogtreecommitdiff
path: root/lib
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 /lib
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.
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile.am2
1 files changed, 1 insertions, 1 deletions
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.