RE: Out of memory issues when compiling

2002-08-13 Thread Brian Robinson
I'm getting the same "out of memory error" as described below on compiles, but when I tried form="yes" memoryInitialSize="128m" memoryMaximumSize="512m" I got the message: Class org.apache.tools.ant.taskdefs.Javac doesn't support the "fork" attribute t

RE: Out of memory issues when compiling

2002-08-11 Thread Brian Robinson
I resolved my out of memory issue by adding "-Xmx256m" in the shell script for ant when it is starting org.apache.tools.ant.Main: $JAVACMD -classpath "$LOCALCLASSPATH" -Dant.home="${ANT_HOME}" $ANT_OPTS -Xmx256m org.apache.tools.ant.Main "$@" The clue that there may be multiple copies of An

RE: Out of memory issues when compiling

2002-08-10 Thread Brian Robinson
>I'm getting the same "out of memory error" as described below on compiles, >but when I tried >fork="yes" >memoryInitialSize="128m" >memoryMaximumSize="512m" > >I got the message: > Class org.apache.tools.ant.taskdefs.Javac doesn't support the > "fork