blob: cd280463e9c7d1cdd6f9e0b08ff059317d178adf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
|