diff options
author | Sven Gothel <[email protected]> | 2013-06-21 10:24:49 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-06-21 10:24:49 +0200 |
commit | 27a63283a3027d207b5ab2b63b3f92328d757dfc (patch) | |
tree | 91763dbbb5f1291dc5a6bbac974fd9a2131add6f /scripts/make.jocl.all.linux-x86_64.sh | |
parent | 7878a3ea18f2c6429728e55ba70145ee1269b12c (diff) |
Bug 758: Fix scripts and ant build files to work w/ Java7 (default now) producing Java6 bytecode ; Apply JAR Manifest tags: Sealed, Permissions and Codebase
Diffstat (limited to 'scripts/make.jocl.all.linux-x86_64.sh')
-rw-r--r-- | scripts/make.jocl.all.linux-x86_64.sh | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/scripts/make.jocl.all.linux-x86_64.sh b/scripts/make.jocl.all.linux-x86_64.sh index 85a916a4..8e508684 100644 --- a/scripts/make.jocl.all.linux-x86_64.sh +++ b/scripts/make.jocl.all.linux-x86_64.sh @@ -6,15 +6,16 @@ if [ -e $SDIR/../../gluegen/make/scripts/setenv-build-jogl-x86_64.sh ] ; then . $SDIR/../../gluegen/make/scripts/setenv-build-jogl-x86_64.sh fi -# -Dtarget.sourcelevel=1.6 \ -# -Dtarget.targetlevel=1.6 \ -# -Dtarget.rt.jar=/opt-share/jre1.6.0_30/lib/rt.jar \ # -Dbuild.archiveon=true \ +export SOURCE_LEVEL=1.6 +export TARGET_LEVEL=1.6 +export TARGET_RT_JAR=/opt-share/jre1.6.0_30/lib/rt.jar + +#export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org" +export JOGAMP_JAR_CODEBASE="Codebase: *.goethel.localnet" + BUILD_ARCHIVE=true \ 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.jocl.all.linux-x86_64.log |