diff options
author | Sven Gothel <[email protected]> | 2013-10-24 21:20:22 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-10-24 21:20:22 +0200 |
commit | b37811112267847c212fd6486c2cdffb8bcc4857 (patch) | |
tree | a2803dbc9286e81803128ed8dd5c996868200d26 | |
parent | 51bb8b2259e8eae9f62ec7202e8b7eb934a44c85 (diff) |
Fix MacOSX build scripts / Add scripts/make.jocl.all.macosx-clang.sh
-rwxr-xr-x | scripts/make.jocl.all.macosx-clang.sh | 25 | ||||
-rw-r--r-- | scripts/make.jocl.all.macosx.sh | 16 |
2 files changed, 41 insertions, 0 deletions
diff --git a/scripts/make.jocl.all.macosx-clang.sh b/scripts/make.jocl.all.macosx-clang.sh new file mode 100755 index 00000000..0b800ac7 --- /dev/null +++ b/scripts/make.jocl.all.macosx-clang.sh @@ -0,0 +1,25 @@ +#! /bin/sh + +if [ -e /opt-share/etc/profile.ant ] ; then + . /opt-share/etc/profile.ant +fi + +JAVA_HOME=`/usr/libexec/java_home -version 1.7` +PATH=$JAVA_HOME/bin:$PATH +export JAVA_HOME PATH + +# -Dc.compiler.debug=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 GLUEGEN_PROPERTIES_FILE="../gluegen/make/lib/gluegen-clang.properties" +# or -Dgcc.compat.compiler=clang + +#export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org" +export JOGAMP_JAR_CODEBASE="Codebase: *.goethel.localnet" + +ant \ + -Drootrel.build=build-macosx \ + $* 2>&1 | tee make.joal.all.macosx.log diff --git a/scripts/make.jocl.all.macosx.sh b/scripts/make.jocl.all.macosx.sh index 195164b8..20f65b92 100644 --- a/scripts/make.jocl.all.macosx.sh +++ b/scripts/make.jocl.all.macosx.sh @@ -6,6 +6,22 @@ if [ -e /opt-share/etc/profile.ant ] ; then . /opt-share/etc/profile.ant fi +JAVA_HOME=`/usr/libexec/java_home -version 1.7` +PATH=$JAVA_HOME/bin:$PATH +export JAVA_HOME PATH + +# -Dc.compiler.debug=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 GLUEGEN_PROPERTIES_FILE="../../gluegen/make/lib/gluegen-clang.properties" +# or -Dgcc.compat.compiler=clang + +#export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org" +export JOGAMP_JAR_CODEBASE="Codebase: *.goethel.localnet" + ant \ -Drootrel.build=build-macosx \ $* 2>&1 | tee make.jocl.all.macosx.log |