Enable parallel compilation

This commit is contained in:
Ioannis Tsakpinis 2014-12-30 14:35:00 +02:00
parent 54df7fb066
commit 85e5488e4d
1 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@
<target name="compile32" unless="build.64bit.only">
<mkdir dir="x32"/>
<apply dir="x32" executable="gcc" skipemptyfilesets="true" failonerror="true">
<apply dir="x32" executable="gcc" skipemptyfilesets="true" failonerror="true" parallel="true">
<arg line="${cflags32} ${cflags_pthread}"/>
<arg value="-I${java.home}/include"/>
<arg value="-I${java.home}/include/linux"/>
@ -94,7 +94,7 @@
<target name="compile64" unless="build.32bit.only">
<mkdir dir="x64"/>
<apply dir="x64" executable="gcc" skipemptyfilesets="true" failonerror="true">
<apply dir="x64" executable="gcc" skipemptyfilesets="true" failonerror="true" parallel="true">
<arg line="${cflags64} ${cflags_pthread}"/>
<arg value="-I${java.home}/include"/>
<arg value="-I${java.home}/include/linux"/>