diff options
Diffstat (limited to 'make')
-rwxr-xr-x | make/build.xml | 8 | ||||
-rwxr-xr-x | make/scripts/make.joal-demos.all.linux-x86_64.sh | 3 |
2 files changed, 10 insertions, 1 deletions
diff --git a/make/build.xml b/make/build.xml index 224117b..00ad211 100755 --- a/make/build.xml +++ b/make/build.xml @@ -132,7 +132,13 @@ <pathelement location="${build}/j-ogg-oggd.jar" /> <pathelement location="${build}/j-ogg-vorbisd.jar" /> </path> - <javac destdir="${classes.dir}" source="1.4" debug="true" debuglevel="source,lines"> + <javac destdir="${classes.dir}" + includeantruntime="false" + memoryMaximumSize="${javac.memorymax}" + source="${target.sourcelevel}" + target="${target.targetlevel}" + bootclasspath="${target.rt.jar}" + debug="${javacdebug}" debuglevel="${javacdebuglevel}"> <src path="${src.dir}" /> <classpath refid="joal.classpath" /> </javac> diff --git a/make/scripts/make.joal-demos.all.linux-x86_64.sh b/make/scripts/make.joal-demos.all.linux-x86_64.sh index 746cf2d..c157266 100755 --- a/make/scripts/make.joal-demos.all.linux-x86_64.sh +++ b/make/scripts/make.joal-demos.all.linux-x86_64.sh @@ -19,5 +19,8 @@ fi # -Drootrel.build=build-x86_64 \ ant \ + -Dtarget.sourcelevel=1.6 \ + -Dtarget.targetlevel=1.6 \ + -Dtarget.rt.jar=/opt-share/jre1.6.0_30/lib/rt.jar \ -Drootrel.build=build-x86_64 \ $* 2>&1 | tee make.joal-demos.all.linux-x86_64.log |