forked from Unity-Technologies/mono
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild_runtime_stv.sh
executable file
·50 lines (38 loc) · 1.09 KB
/
build_runtime_stv.sh
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/bash
PREFIX=`pwd`/builds/stv
OUTDIR=builds/embedruntimes/stv
perl PrepareSTVNDK.pl -ndk=r03 -env=envsetup.sh && source envsetup.sh && source ${STV_NDK_ROOT}/stv-ndk-env.sh
CXXFLAGS="-DARM_FPU_VFP=1 -D__ARM_EABI__ -mno-thumb -march=armv7-a -mfpu=vfpv3 -mtune=cortex-a9 -fPIC";
CC="${STV_GCC_PREFIX}gcc"
CXX="${STV_GCC_PREFIX}g++"
AR="${STV_GCC_PREFIX}ar"
LD="${STV_GCC_PREFIX}ld"
LDFLAGS=""
CONFIG_OPTS="\
--prefix=$PREFIX \
--cache-file=stv_cross.cache \
--host=arm-unknown-linux-gnueabi \
--disable-mcs-build \
--disable-parallel-mark \
--disable-shared-handles \
--with-sigaltstack=no \
--with-tls=pthread \
--with-glib=embedded \
--disable-nls \
mono_cv_uscore=yes"
make clean && make distclean
rm stv_cross.cache
pushd eglib
autoreconf -i
popd
autoreconf -i
# Run configure
./configure $CONFIG_OPTS CFLAGS="$CXXFLAGS" CXXFLAGS="$CXXFLAGS" LDFLAGS="$LDFLAGS" CC="$CC" CXX="$CXX" AR="$AR" LD="$LD"
# Run Make
make && echo "Build SUCCESS!" || exit 1
rm -rf builds
mkdir -p $OUTDIR
cp -f mono/mini/.libs/libmono.a $OUTDIR
if [ -d builds/monodistribution ] ; then
rm -r builds/monodistribution
fi