From: <fd...@us...> - 2008-09-23 19:45:27
|
Revision: 4574 http://jnode.svn.sourceforge.net/jnode/?rev=4574&view=rev Author: fduminy Date: 2008-09-23 19:45:07 +0000 (Tue, 23 Sep 2008) Log Message: ----------- set a greater value for memoryMaximumSize when compiling on 64bits architectures Modified Paths: -------------- trunk/all/build.xml trunk/all/lib/jnode.xml Modified: trunk/all/build.xml =================================================================== --- trunk/all/build.xml 2008-09-21 09:24:00 UTC (rev 4573) +++ trunk/all/build.xml 2008-09-23 19:45:07 UTC (rev 4574) @@ -1,5 +1,11 @@ <project name="JNode" default="help" basedir="."> + <!-- before including jnode.xml, we must set this property --> + <condition property="memoryMaximumSize" value="1512m" else="768m"> + <os arch="amd64"/> + </condition> + <echo message="Setting memoryMaximumSize to ${memoryMaximumSize}"/> + <!-- Include antlib --> <typedef file="${basedir}/lib/jnode.xml"/> Modified: trunk/all/lib/jnode.xml =================================================================== --- trunk/all/lib/jnode.xml 2008-09-21 09:24:00 UTC (rev 4573) +++ trunk/all/lib/jnode.xml 2008-09-23 19:45:07 UTC (rev 4574) @@ -8,7 +8,7 @@ debug="on" optimize="on" fork="on" - memoryMaximumSize="768m" + memoryMaximumSize="${memoryMaximumSize}" compiler="modern" includeJavaRuntime="false" target="${java.target}" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |