~ubuntu-branches/debian/experimental/libjogl2-java/experimental

« back to all changes in this revision

Viewing changes to make/scripts/make.jogl.all.linux-armv7hf.sh

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2012-12-24 09:12:34 UTC
  • Revision ID: package-import@ubuntu.com-20121224091234-15tmv8xkz2rj5pvx
Tags: 2.0-rc11-1~exp4
Try again to fix the armhf FTBFS (thanks again to Thomas Preud'homme)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
 
 
3
# arm-linux-gnueabihf == armhf triplet
 
4
PATH=`pwd`/../../gluegen/make/lib/linux/arm-linux-gnueabihf/bin:$PATH
 
5
export PATH
 
6
 
 
7
#    -Dc.compiler.debug=true 
 
8
#    -Dgluegen.cpptasks.detected.os=true \
 
9
#    -DisUnix=true \
 
10
#    -DisLinux=true \
 
11
#    -DisLinuxARMv7=true \
 
12
#    -DisX11=false \
 
13
 
 
14
export TARGET_PLATFORM_ROOT=/
 
15
export TARGET_PLATFORM_LIBS=/usr/lib/arm-linux-gnueabihf
 
16
export TARGET_JAVA_LIBS=/usr/lib/jvm/java-6-openjdk-armhf/jre/lib/arm
 
17
 
 
18
export GLUEGEN_CPPTASKS_FILE="../../gluegen/make/lib/gluegen-cpptasks-linux-armv7hf.xml"
 
19
 
 
20
ant \
 
21
    -Drootrel.build=build-linux-armv7hf \
 
22
    -Dsetup.addNativeKD=true \
 
23
    -Dsetup.addNativeOpenMAX=true \
 
24
    -Dsetup.addNativeBroadcom=true \
 
25
    -Djunit.run.arg0="-Dnewt.test.Screen.disableScreenMode" \
 
26
    $* 2>&1 | tee make.jogl.all.linux-armv7hf.log
 
27