This increases the annoying maximum heap size value we pass to javac so that Classpath can be compiled on PPC64.
2008-02-21 Andrew John Hughes <[EMAIL PROTECTED]> PR classpath/35274: * m4/acinclude.m4: Increase maximum heap size to 768mb. -- Andrew :-) Support Free Java! Contribute to GNU Classpath and the OpenJDK http://www.gnu.org/software/classpath http://openjdk.java.net
Index: m4/acinclude.m4 =================================================================== RCS file: /sources/classpath/classpath/m4/acinclude.m4,v retrieving revision 1.32 diff -u -r1.32 acinclude.m4 --- m4/acinclude.m4 12 Feb 2008 22:30:23 -0000 1.32 +++ m4/acinclude.m4 21 Feb 2008 10:46:09 -0000 @@ -193,11 +193,11 @@ } EOF AC_MSG_CHECKING([whether javac supports -J]) - $JAVAC $JAVACFLAGS -J-Xmx512M -sourcepath '' $JAVA_TEST + $JAVAC $JAVACFLAGS -J-Xmx768M -sourcepath '' $JAVA_TEST javac_result=$? if test "x$javac_result" = "x0"; then AC_MSG_RESULT([yes]) - JAVAC_MEM_OPT="-J-Xmx512M" + JAVAC_MEM_OPT="-J-Xmx768M" else AC_MSG_RESULT([no]) fi