From: <fwi...@us...> - 2009-07-12 00:53:27
|
Revision: 6531 http://jython.svn.sourceforge.net/jython/?rev=6531&view=rev Author: fwierzbicki Date: 2009-07-12 00:53:25 +0000 (Sun, 12 Jul 2009) Log Message: ----------- reducing heap memory for antlr task from 1024 to 128 since that appears to be enough for the problematic case (JDK 6 on OS X). Modified Paths: -------------- trunk/jython/build.xml Modified: trunk/jython/build.xml =================================================================== --- trunk/jython/build.xml 2009-07-12 00:18:02 UTC (rev 6530) +++ trunk/jython/build.xml 2009-07-12 00:53:25 UTC (rev 6531) @@ -428,7 +428,7 @@ <target name="antlr_gen" depends="prepare-output" unless="antlr.notneeded"> <java classname="org.antlr.Tool" failonerror="true" fork="true" dir="${jython.base.dir}"> - <jvmarg value="-Xmx1024m"/> + <jvmarg value="-Xmx128m"/> <arg value="-Xconversiontimeout"/> <arg value="2000"/> <arg value="-fo"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |