From 91570a3e462fe74c8781497a20497009f78cd44c Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Fri, 18 Apr 2014 17:10:11 -0400 Subject: [PATCH] WRAPPER: remove outdated build script --- samples/wrapper/build_android.sh | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100755 samples/wrapper/build_android.sh diff --git a/samples/wrapper/build_android.sh b/samples/wrapper/build_android.sh deleted file mode 100755 index 941d3bcca9..0000000000 --- a/samples/wrapper/build_android.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh -#script to compile Wrapper for Android - -export ANDROIDTC="$HOME/android-tc" -export TCBINARIES="$ANDROIDTC/bin" -export TCINCLUDES="$ANDROIDTC/arm-linux-androideabi" -export TCSYSROOT="$ANDROIDTC/sysroot" -export STDCPPTC="$TCINCLUDES/lib/libstdc++.a" -export BOINC_DIR="../.." -export BOINC_API_DIR="$BOINC_DIR/api" -export BOINC_LIB_DIR="$BOINC_DIR/lib" -export BOINC_ZIP_DIR="$BOINC_DIR/zip" - -export PATH="$PATH:$TCBINARIES:$TCINCLUDES/bin" -export CC=arm-linux-androideabi-gcc -export CXX=arm-linux-androideabi-g++ -export LD=arm-linux-androideabi-ld -export CFLAGS="--sysroot=$TCSYSROOT -DANDROID -DDECLARE_TIMEZONE -Wall -I$TCINCLUDES/include -O3 -fomit-frame-pointer -I$TCINCLUDES/include -I$BOINC_DIR -I$BOINC_LIB_DIR -I$BOINC_API_DIR -I$BOINC_ZIP_DIR" -export CXXFLAGS="--sysroot=$TCSYSROOT -DANDROID -Wall -funroll-loops -fexceptions -O3 -fomit-frame-pointer -I$TCINCLUDES/include -I$BOINC_DIR -I$BOINC_LIB_DIR -I$BOINC_API_DIR -I$BOINC_ZIP_DIR" -export LDFLAGS="-L$TCSYSROOT/usr/lib -L$TCINCLUDES/lib -L$BOINC_DIR -L$BOINC_LIB_DIR -L$BOINC_API_DIR -L$BOINC_ZIP_DIR -llog" -export GDB_CFLAGS="--sysroot=$TCSYSROOT -Wall -g -I$TCINCLUDES/include" - -# Prepare android toolchain and environment -../../android/build_androidtc.sh - -make -f Makefile_android