diff options
author | Sven Gothel <[email protected]> | 2011-07-22 07:43:44 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-07-22 07:43:44 +0200 |
commit | 2d57b3cbb4a8189ecb5523f6d8de3aa37db78a13 (patch) | |
tree | 4faad37b4725dc2aecc327e87f3ace6be0b5cad3 /make/scripts | |
parent | dac1bac087ac94c596dcb74185d504712069b0a7 (diff) |
Cleanup [cross] compile properties
- linux-armv7 (ubuntu)
- added scripts/make.gluegen.all.linux-armv7-cross.sh
- added symbolic links to cross toolchain (gcc, ld, ..)
allowing gluegen's cpptask to pick it up
- android-armv7 (android)
- we have scripts/make.gluegen.all.android-armv7-cross.sh
Diffstat (limited to 'make/scripts')
-rwxr-xr-x | make/scripts/make.gluegen.all.android-armv7-cross.sh (renamed from make/scripts/make.gluegen.all.android-arm.sh) | 25 | ||||
-rwxr-xr-x | make/scripts/make.gluegen.all.linux-armv7-cross.sh | 26 | ||||
-rwxr-xr-x | make/scripts/make.gluegen.all.linux-armv7.sh (renamed from make/scripts/make.gluegen.all.linux-armv7l_eabi.sh) | 7 | ||||
-rwxr-xr-x | make/scripts/make.gluegen.all.linux-x86.sh | 1 |
4 files changed, 45 insertions, 14 deletions
diff --git a/make/scripts/make.gluegen.all.android-arm.sh b/make/scripts/make.gluegen.all.android-armv7-cross.sh index 631d7e3..0b6f750 100755 --- a/make/scripts/make.gluegen.all.android-arm.sh +++ b/make/scripts/make.gluegen.all.android-armv7-cross.sh @@ -1,19 +1,18 @@ #! /bin/sh - -export NDK_ROOT=/usr/local/android-ndk-r6 +if [ -z "$NDK_ROOT" ] ; then + NDK_ROOT=/usr/local/android-ndk-r6 +fi +export NDK_ROOT NDK_TOOLCHAIN=$NDK_ROOT/toolchains/arm-linux-androideabi-4.4.3/prebuilt/linux-x86/arm-linux-androideabi export PATH="$NDK_TOOLCHAIN/bin:$PATH" -#ANDROID_VERSION=8 - ANDROID_VERSION=9 export GCC_VERSION=4.4.3 HOST_ARCH=linux-x86 export TARGET_ARCH=arm-linux-androideabi # mcpu: cortex-a8', `cortex-a9', `cortex-r4', `cortex-r4f', `cortex-m3', `cortex-m1', `xscale', `iwmmxt', `iwmmxt2', `ep9312'. -TARGET_CPU_ARCH= export TARGET_CPU_NAME=armv7-a TARGET_CPU_TUNE=armv7-a # mfpu: `vfp', `vfpv3', `vfpv3-d16' and `neon' @@ -43,7 +42,6 @@ export NDK_CFLAGS="\ -fpic \ -DANDROID \ " -#/usr/local/android-ndk-r6/toolchains/x86-4.4.3/prebuilt/linux-x86/lib/gcc/i686-android-linux/4.4.3 export NDK_LDFLAGS="\ -Wl,--demangle \ @@ -64,13 +62,18 @@ ${TARGET_OS_PATH}/lib/crtend_android.o \ #-L/Users/nirnimesh/NIR/android/mydroid/cupcake/out/target/product/generic/obj/lib #-nostdlib /Users/nirnimesh/NIR/android/mydroid/cupcake/out/target/product/generic/obj/lib/crtbegin_dynamic.o -lc +which gcc 2>&1 | tee make.gluegen.all.android-armv7-cross.log + ant \ - -Dgluegen-cpptasks.file=`pwd`/lib/gluegen-cpptasks-android-arm.xml \ - -Drootrel.build=build-android-arm \ - -Dos.arch=armv7 -Dos.name=Android\ - $* 2>&1 | tee make.gluegen.all.android-arm.log + -Dgluegen-cpptasks.file=`pwd`/lib/gluegen-cpptasks-android-armv7.xml \ + -Drootrel.build=build-android-armv7 \ + -Dgluegen.cpptasks.detected.os=true \ + -DisUnix=true \ + -DisAndroid=true \ + -DisAndroidARMv7=true \ + \ + $* 2>&1 | tee -a make.gluegen.all.android-armv7-cross.log -which gcc #$NDK_GCC -march=armv7-a -fpic -DANDROID -I/usr/local/android-ndk-r6/platforms/android-9/arch-arm/usr/include -Wl,--demangle -nostdlib -Bdynamic -Wl,-dynamic-linker,/system/bin/linker -Wl,--gc-sections -Wl,-z,nocopyreloc /usr/local/android-ndk-r6/platforms/android-9/arch-arm/usr/lib/libc.so /usr/local/android-ndk-r6/platforms/android-9/arch-arm/usr/lib/libstdc++.so /usr/local/android-ndk-r6/platforms/android-9/arch-arm/usr/lib/libm.so /usr/local/android-ndk-r6/platforms/android-9/arch-arm/usr/lib/crtbegin_dynamic.o -Wl,--no-undefined -Wl,-rpath-link=/usr/local/android-ndk-r6/platforms/android-9/arch-arm/usr/lib /usr/local/android-ndk-r6/toolchains/arm-linux-androideabi-4.4.3/prebuilt/linux-x86/lib/gcc/arm-linux-androideabi/4.4.3/armv7-a/libgcc.a /usr/local/android-ndk-r6/platforms/android-9/arch-arm/usr/lib/crtend_android.o -c -fno-rtti -fPIC -DANDROID -I/home/rsantina/projects/jogamp/gluegen/build-android-arm/gensrc/native -I/home/rsantina/projects/jogamp/gluegen/build-android-arm/gensrc/native/Unix -I/opt/x86_64/jdk1.6.0_25/include -I/opt/x86_64/jdk1.6.0_25/include/linux -I/home/rsantina/projects/jogamp/gluegen/make/stub_includes/platform /home/rsantina/projects/jogamp/gluegen/src/native/unix/UnixDynamicLinkerImpl_JNI.c /home/rsantina/projects/jogamp/gluegen/src/native/common/PointerBuffer.c /home/rsantina/projects/jogamp/gluegen/src/native/common/MachineDescriptionRuntime.c /home/rsantina/projects/jogamp/gluegen/src/native/common/JVM_Tool.c #which gcc diff --git a/make/scripts/make.gluegen.all.linux-armv7-cross.sh b/make/scripts/make.gluegen.all.linux-armv7-cross.sh new file mode 100755 index 0000000..cd28046 --- /dev/null +++ b/make/scripts/make.gluegen.all.linux-armv7-cross.sh @@ -0,0 +1,26 @@ +#! /bin/sh + +PATH=`pwd`/lib/linux-x86_64/arm-linux-gnueabi/bin:$PATH +export PATH + +# -Dc.compiler.debug=true +# -Dgluegen.cpptasks.detected.os=true \ +# -DisUnix=true \ +# -DisLinux=true \ +# -DisLinuxARMv7=true \ +# -DisX11=false \ + +ant \ + -Drootrel.build=build-linux-armv7 \ + -Dgluegen.cpptasks.detected.os=true \ + -DisUnix=true \ + -DisLinux=true \ + -DisLinuxARMv7=true \ + -DisX11=true \ + \ + -DuseKD=true \ + -DuseOpenMAX=true \ + -DuseBroadcomEGL=true \ + $* 2>&1 | tee make.gluegen.all.linux-armv7-cross.log + + diff --git a/make/scripts/make.gluegen.all.linux-armv7l_eabi.sh b/make/scripts/make.gluegen.all.linux-armv7.sh index 9d1975c..527347c 100755 --- a/make/scripts/make.gluegen.all.linux-armv7l_eabi.sh +++ b/make/scripts/make.gluegen.all.linux-armv7.sh @@ -8,5 +8,8 @@ # -DisX11=true \ ant \ - -Drootrel.build=build-armv7l_eabi \ - $* 2>&1 | tee make.gluegen.all.linux-armv7l_eabi.log + -Drootrel.build=build-linux-armv7 \ + -DuseKD=true \ + -DuseOpenMAX=true \ + -DuseBroadcomEGL=true \ + $* 2>&1 | tee make.gluegen.all.linux-armv7.log diff --git a/make/scripts/make.gluegen.all.linux-x86.sh b/make/scripts/make.gluegen.all.linux-x86.sh index f044cb4..196cede 100755 --- a/make/scripts/make.gluegen.all.linux-x86.sh +++ b/make/scripts/make.gluegen.all.linux-x86.sh @@ -16,5 +16,4 @@ fi ant \ -Drootrel.build=build-x86 \ - -Dos.arch=x86 \ $* 2>&1 | tee make.gluegen.all.linux-x86.log |