Revert "Ant build.xml: Faster build if we don't fork the ANTLR task"

This reverts commit 6e9129848e.
This commit is contained in:
Sam Harwell 2013-01-05 14:35:37 -06:00
parent d1ba09f1f7
commit f1b6e93a04
1 changed files with 4 additions and 8 deletions

View File

@ -40,15 +40,12 @@ build.sysclasspath=ignore
<target name="antlr" depends="init"> <target name="antlr" depends="init">
<echo>parse grammars</echo> <echo>parse grammars</echo>
<java classname="org.antlr.Tool" fork="false" failonerror="true"> <java classname="org.antlr.Tool" fork="true" failonerror="true" maxmemory="300m"
dir="${basedir}/tool/src/org/antlr/v4/parse">
<arg value="-verbose"/> <arg value="-verbose"/>
<arg value="-make"/> <arg value="-make"/>
<arg value="-o"/> <arg value="-o"/>
<arg value="${antlr3.gen.dir}/org/antlr/v4/parse"/> <arg value="${antlr3.gen.dir}/org/antlr/v4/parse"/>
<arg value="-in"/>
<arg value="${basedir}/tool/src/org/antlr/v4/parse"/>
<arg value="-lib"/>
<arg value="${basedir}/tool/src/org/antlr/v4/parse"/>
<arg value="ANTLRParser.g"/> <arg value="ANTLRParser.g"/>
<arg value="ANTLRLexer.g"/> <arg value="ANTLRLexer.g"/>
<arg value="ActionSplitter.g"/> <arg value="ActionSplitter.g"/>
@ -63,13 +60,12 @@ build.sysclasspath=ignore
</java> </java>
<echo>codegen grammars</echo> <echo>codegen grammars</echo>
<java classname="org.antlr.Tool" fork="false" failonerror="true"> <java classname="org.antlr.Tool" fork="true" failonerror="true" maxmemory="300m"
dir="${basedir}/tool/src/org/antlr/v4/codegen">
<arg value="-verbose"/> <arg value="-verbose"/>
<arg value="-make"/> <arg value="-make"/>
<arg value="-o"/> <arg value="-o"/>
<arg value="${antlr3.gen.dir}/org/antlr/v4/codegen"/> <arg value="${antlr3.gen.dir}/org/antlr/v4/codegen"/>
<arg value="-in"/>
<arg value="${basedir}/tool/src/org/antlr/v4/codegen"/>
<arg value="-lib"/> <arg value="-lib"/>
<arg value="${antlr3.gen.dir}/org/antlr/v4/parse"/> <arg value="${antlr3.gen.dir}/org/antlr/v4/parse"/>
<arg value="SourceGenTriggers.g"/> <arg value="SourceGenTriggers.g"/>