I am running a javac task against a 1.2.2 compiler, but it is running out of memory.  
The javac task documentation says that there is a attribute for setting the Max memory 
size (memoryMaximumSize), but it says that it is ignored if you are running javac 
externally.

How do I set increase the memory allocation for the forked JVM?

my task implementation is:
<javac 
            destdir="${classes.dir}" 
            srcdir="${java.src.dir}" 
            debug="off"
            fork="yes"
            executable="C:\jdk1.2.2\bin\javac"
            compiler="javac1.2">

            <include name="**/*.java" />
            <exclude name="LLB_WISMO_POC/**/*.java" />

            <classpath>
                <fileset dir="./LLB_SUPPORT">
                    <include name="**/*.jar"/>
                </fileset>
            </classpath>
        </javac>
     </target>

Eric Wood
[EMAIL PROTECTED]
207.552.2306


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to