mirror of https://github.com/BOINC/boinc.git
51 lines
1.6 KiB
Bash
Executable File
51 lines
1.6 KiB
Bash
Executable File
#/bin/sh
|
|
|
|
#
|
|
# See: http://boinc.berkeley.edu/trac/wiki/AndroidBuildApp#
|
|
#
|
|
|
|
# Script to compile various BOINC libraries for Android to be used
|
|
# by science applications
|
|
|
|
COMPILEBOINC="yes"
|
|
CONFIGURE="yes"
|
|
MAKECLEAN="yes"
|
|
|
|
export BOINC=".." #BOINC source code
|
|
|
|
export ANDROIDTC="$HOME/androidx86-tc"
|
|
export TCBINARIES="$ANDROIDTC/bin"
|
|
export TCINCLUDES="$ANDROIDTC/i686-android-linux"
|
|
export TCSYSROOT="$ANDROIDTC/sysroot"
|
|
export STDCPPTC="$TCINCLUDES/lib/libstdc++.a"
|
|
|
|
export PATH="$PATH:$TCBINARIES:$TCINCLUDES/bin"
|
|
export CC=i686-android-linux-gcc
|
|
export CXX=i686-android-linux-g++
|
|
export LD=i686-android-linux-ld
|
|
export CFLAGS="--sysroot=$TCSYSROOT -DANDROID -DDECLARE_TIMEZONE -Wall -I$TCINCLUDES/include -O3 -fomit-frame-pointer"
|
|
export CXXFLAGS="--sysroot=$TCSYSROOT -DANDROID -Wall -I$TCINCLUDES/include -funroll-loops -fexceptions -O3 -fomit-frame-pointer"
|
|
export LDFLAGS="-L$TCSYSROOT/usr/lib -L$TCINCLUDES/lib -llog"
|
|
export GDB_CFLAGS="--sysroot=$TCSYSROOT -Wall -g -I$TCINCLUDES/include"
|
|
export PKG_CONFIG_SYSROOT_DIR=$TCSYSROOT
|
|
|
|
# Prepare android toolchain and environment
|
|
./build_androidtc_x86.sh
|
|
|
|
if [ -n "$COMPILEBOINC" ]; then
|
|
echo "==================building Libraries from $BOINC=========================="
|
|
cd $BOINC
|
|
if [ -n "$MAKECLEAN" ]; then
|
|
make clean
|
|
fi
|
|
if [ -n "$CONFIGURE" ]; then
|
|
./_autosetup
|
|
./configure --host=i686-linux --with-boinc-platform="x86-android-linux-gnu" --with-ssl=$TCINCLUDES --disable-server --disable-manager --disable-client --disable-shared --enable-static
|
|
fi
|
|
make
|
|
make stage
|
|
|
|
echo "=============================BOINC done============================="
|
|
|
|
fi
|