mirror of https://github.com/BOINC/boinc.git
65 lines
2.1 KiB
Bash
Executable File
65 lines
2.1 KiB
Bash
Executable File
#/bin/sh
|
|
|
|
#
|
|
# See: http://boinc.berkeley.edu/trac/wiki/AndroidBuildClient#
|
|
#
|
|
|
|
# Script to compile BOINC for Android
|
|
|
|
COMPILEBOINC="yes"
|
|
CONFIGURE="yes"
|
|
MAKECLEAN="yes"
|
|
|
|
export BOINC=".." #BOINC source code
|
|
|
|
export ANDROIDTC="$HOME/androidarm-tc"
|
|
export TCBINARIES="$ANDROIDTC/bin"
|
|
export TCINCLUDES="$ANDROIDTC/arm-linux-androideabi"
|
|
export TCSYSROOT="$ANDROIDTC/sysroot"
|
|
export STDCPPTC="$TCINCLUDES/lib/libstdc++.a"
|
|
|
|
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"
|
|
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_arm.sh
|
|
|
|
if [ -n "$COMPILEBOINC" ]; then
|
|
echo "==================building BOINC from $BOINC=========================="
|
|
cd $BOINC
|
|
if [ -n "$MAKECLEAN" ]; then
|
|
make clean
|
|
fi
|
|
if [ -n "$CONFIGURE" ]; then
|
|
./_autosetup
|
|
./configure --host=arm-linux --with-boinc-platform="arm-android-linux-gnu" --with-ssl=$TCINCLUDES --disable-server --disable-manager --disable-shared --enable-static
|
|
sed -e "s%^CLIENTLIBS *= *.*$%CLIENTLIBS = -lm $STDCPPTC%g" client/Makefile > client/Makefile.out
|
|
mv client/Makefile.out client/Makefile
|
|
fi
|
|
make
|
|
make stage
|
|
|
|
echo "Stripping Binaries"
|
|
cd stage/usr/local/bin
|
|
arm-linux-androideabi-strip *
|
|
cd ../../../../
|
|
|
|
echo "Copy Assets"
|
|
cd android
|
|
mkdir "BOINC/assets"
|
|
cp "$BOINC/stage/usr/local/bin/boinc" "BOINC/assets/armeabi-v7a/boinc"
|
|
cp "$BOINC/stage/usr/local/bin/boinccmd" "BOINC/assets/armeabi-v7a/boinccmd"
|
|
cp "$BOINC/win_build/installerv2/redist/all_projects_list.xml" "BOINC/assets/all_projects_list.xml"
|
|
cp "$CURL_DIR/ca-bundle.crt" "BOINC/assets/ca-bundle.crt"
|
|
|
|
echo "=============================BOINC done============================="
|
|
|
|
fi
|