1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

We have to supply -Xmx directly to JVM because ECJ ignores -J option.

http://developer.classpath.org/mediation/ClasspathDeveloperGuidelines
This commit is contained in:
Jung-uk Kim 2012-10-05 17:40:54 +00:00
parent 35441230a3
commit 02e125120c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=305314

View File

@ -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}; \