svn commit: r305314 - head/java/classpath

Jung-uk Kim jkim at FreeBSD.org
Fri Oct 5 17:40:55 UTC 2012


Author: jkim
Date: Fri Oct  5 17:40:54 2012
New Revision: 305314
URL: http://svn.freebsd.org/changeset/ports/305314

Log:
  We have to supply -Xmx directly to JVM because ECJ ignores -J option.
  
  http://developer.classpath.org/mediation/ClasspathDeveloperGuidelines

Modified:
  head/java/classpath/Makefile

Modified: head/java/classpath/Makefile
==============================================================================
--- head/java/classpath/Makefile	Fri Oct  5 17:39:22 2012	(r305313)
+++ head/java/classpath/Makefile	Fri Oct  5 17:40:54 2012	(r305314)
@@ -169,7 +169,7 @@ pre-configure:
 	@if [ ! -x ${JAVAC} ]; then \
 		${PRINTF} "%s\n%s\n%s\n%s\n" \
 		    '#!/bin/sh' \
-		    '"${JAVA}" -classpath "${DISTDIR}/${ECJ_JAR}" \' \
+		    '"${JAVA}" -Xmx768M -classpath "${DISTDIR}/${ECJ_JAR}" \' \
 		    '    org.eclipse.jdt.internal.compiler.batch.Main \' \
 		    '    "$${@:--help}"' > ${JAVAC}; \
 		${CHMOD} 755 ${JAVAC}; \



More information about the svn-ports-all mailing list