diff options
author | Sven Gothel <[email protected]> | 2013-04-21 05:40:50 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-04-21 05:40:50 +0200 |
commit | d8924e4a9271b955e7a96b2e156f2f447fa4d45a (patch) | |
tree | c5557ad73e3d1c101407d232bc6bbd75120335bf /make/scripts/make.joal.all.linux-x86.sh | |
parent | 256a4482965f582ddb3398d063103fd318d169e9 (diff) |
Fix x86_32 build on x86_64 of openal-soft; ; Statically link gcc-lib in openal-soft; Strip all native libraries (1.5M -> ~400k)
Diffstat (limited to 'make/scripts/make.joal.all.linux-x86.sh')
-rwxr-xr-x | make/scripts/make.joal.all.linux-x86.sh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/make/scripts/make.joal.all.linux-x86.sh b/make/scripts/make.joal.all.linux-x86.sh new file mode 100755 index 0000000..579b7f0 --- /dev/null +++ b/make/scripts/make.joal.all.linux-x86.sh @@ -0,0 +1,27 @@ +#! /bin/sh + +SDIR=`dirname $0` + +if [ -e $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86.sh ] ; then + . $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86.sh +fi + +if [ -z "$ANT_PATH" ] ; then + if [ -e /usr/share/ant/bin/ant -a -e /usr/share/ant/lib/ant.jar ] ; then + ANT_PATH=/usr/share/ant + export ANT_PATH + echo autosetting ANT_PATH to $ANT_PATH + fi +fi +if [ -z "$ANT_PATH" ] ; then + echo ANT_PATH does not exist, set it + exit +fi + +# -Dtarget.sourcelevel=1.6 \ +# -Dtarget.targetlevel=1.6 \ +# -Dtarget.rt.jar=/opt-share/jre1.6.0_30/lib/rt.jar \ + +ant \ + -Drootrel.build=build-x86 \ + $* 2>&1 | tee make.joal.all.linux-x86.log |