You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by te...@apache.org on 2006/06/22 22:52:05 UTC

svn commit: r416469 - in /incubator/harmony/enhanced/classlib/trunk/make: build-java.xml properties.xml

Author: tellison
Date: Thu Jun 22 13:52:04 2006
New Revision: 416469

URL: http://svn.apache.org/viewvc?rev=416469&view=rev
Log:
Define compiler max memory as property to allow override.

Modified:
    incubator/harmony/enhanced/classlib/trunk/make/build-java.xml
    incubator/harmony/enhanced/classlib/trunk/make/properties.xml

Modified: incubator/harmony/enhanced/classlib/trunk/make/build-java.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/make/build-java.xml?rev=416469&r1=416468&r2=416469&view=diff
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/make/build-java.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/make/build-java.xml Thu Jun 22 13:52:04 2006
@@ -80,7 +80,7 @@
             description="Compile the source">
         <mkdir dir="${build.output}" />
 
-        <javac fork="yes" memoryMaximumSize="384M"
+        <javac fork="yes" memoryMaximumSize="${hy.javac.maxmem}"
                destdir="${build.output}"
                source="${hy.javac.source}" target="${hy.javac.target}"
                debug="${hy.javac.debug}">

Modified: incubator/harmony/enhanced/classlib/trunk/make/properties.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/make/properties.xml?rev=416469&r1=416468&r2=416469&view=diff
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/make/properties.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/make/properties.xml Thu Jun 22 13:52:04 2006
@@ -26,6 +26,7 @@
     <property name="hy.javac.source" value="1.5" />
     <property name="hy.javac.target" value="jsr14" />
     <property name="hy.javac.debug" value="on" />
+    <property name="hy.javac.maxmem" value="384M" />
 
     <!-- Conditions for operating systems -->
     <condition property="is.windows">
@@ -113,7 +114,7 @@
   hy.javac.target = ${hy.javac.target}
   hy.javac.source = ${hy.javac.source}
   hy.javac.debug  = ${hy.javac.debug}
-
+  hy.javac.maxmem = ${hy.javac.maxmem}
 
 Harmony platform properties: