diff options
author | Sven Gothel <[email protected]> | 2013-09-13 19:21:52 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-09-13 19:21:52 +0200 |
commit | 5dce252bfcc49995c2bda1d91e010c4c73f71ddb (patch) | |
tree | 67a8e01916b84a32f475c788dea24d3d814712a0 /make | |
parent | 4b866d2686ab9c3fd7cf6708925b4663ad81e359 (diff) |
Add support for clang ; Use __APPLE__ predefined macro
Diffstat (limited to 'make')
-rw-r--r-- | make/config/jogl/gl-headers.cfg | 2 | ||||
-rw-r--r-- | make/config/jogl/gl3-headers.cfg | 2 | ||||
-rw-r--r-- | make/config/jogl/glu-gl2.cfg | 2 | ||||
-rwxr-xr-x | make/scripts/make.jogl.all.macosx-clang.sh | 28 |
4 files changed, 31 insertions, 3 deletions
diff --git a/make/config/jogl/gl-headers.cfg b/make/config/jogl/gl-headers.cfg index 62f5e8dd4..073f9d9a0 100644 --- a/make/config/jogl/gl-headers.cfg +++ b/make/config/jogl/gl-headers.cfg @@ -15,7 +15,7 @@ CustomCCode #define WGL_GLEXT_PROTOTYPES CustomCCode /* Include the OpenGL headers */ CustomCCode #include <GL/gl.h> CustomCCode #include <GL/wglext.h> -CustomCCode #elif defined(macosx) +CustomCCode #elif defined(__APPLE__) CustomCCode #include <inttypes.h> CustomCCode #include <stdlib.h> CustomCCode /* Include the OpenGL headers */ diff --git a/make/config/jogl/gl3-headers.cfg b/make/config/jogl/gl3-headers.cfg index 7ab5099c9..a4c5cf62a 100644 --- a/make/config/jogl/gl3-headers.cfg +++ b/make/config/jogl/gl3-headers.cfg @@ -10,7 +10,7 @@ CustomCCode #include <stddef.h> CustomCCode #include <malloc.h> CustomCCode #include <GL/glcorearb.h> CustomCCode #include <GL/glcorearbext.h> -CustomCCode #elif defined(macosx) +CustomCCode #elif defined(__APPLE__) CustomCCode #include <inttypes.h> CustomCCode #include <stdlib.h> CustomCCode #include <GL/glcorearb.h> diff --git a/make/config/jogl/glu-gl2.cfg b/make/config/jogl/glu-gl2.cfg index 2dcc15a94..491d9224f 100644 --- a/make/config/jogl/glu-gl2.cfg +++ b/make/config/jogl/glu-gl2.cfg @@ -15,7 +15,7 @@ CustomCCode #include <windows.h> CustomCCode #undef WIN32_LEAN_AND_MEAN CustomCCode CustomCCode #include <stddef.h> -CustomCCode #elif defined(macosx) +CustomCCode #elif defined(__APPLE__) CustomCCode #include <inttypes.h> CustomCCode #include <jni.h> CustomCCode #include </usr/include/machine/types.h> diff --git a/make/scripts/make.jogl.all.macosx-clang.sh b/make/scripts/make.jogl.all.macosx-clang.sh new file mode 100755 index 000000000..af9f1e1fe --- /dev/null +++ b/make/scripts/make.jogl.all.macosx-clang.sh @@ -0,0 +1,28 @@ +#! /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 \ +# -Djavacdebug="true" \ +# -Djavacdebuglevel="source,lines,vars" \ +# + +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.jogl.all.macosx.log |