diff options
author | Sven Gothel <[email protected]> | 2013-09-19 08:43:32 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-09-19 08:43:32 +0200 |
commit | 9e4ce30748c23bb658892efdee19cfdb47f32dda (patch) | |
tree | 331bb0f6dfe31bff33e78149b492e290194c3264 | |
parent | 79d9dae462c6d8227807e753bf487fd87d446df7 (diff) |
Add osx clang build script
-rwxr-xr-x | make/scripts/make.joal.all.macosx-clang.sh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/make/scripts/make.joal.all.macosx-clang.sh b/make/scripts/make.joal.all.macosx-clang.sh new file mode 100755 index 0000000..f8c8e8c --- /dev/null +++ b/make/scripts/make.joal.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 |