mirror of https://github.com/BOINC/boinc.git
16 lines
482 B
Bash
Executable File
16 lines
482 B
Bash
Executable File
#/bin/sh
|
|
|
|
#
|
|
# See: http://boinc.berkeley.edu/trac/wiki/AndroidBuildClient#
|
|
#
|
|
|
|
# Script to setup Android toolchain
|
|
|
|
export NDK_ROOT="${NDK_ROOT:-$HOME/NVPACK/android-ndk-r10e}"
|
|
export ANDROID_TC="${ANDROID_TC:-$HOME/android-tc}"
|
|
export ANDROID_TC_X86_64="${ANDROID_TC_X86_64:-$ANDROID_TC/x86_64}"
|
|
|
|
if [ ! -d $ANDROID_TC_X86_64/x86_64-linux-android ]; then
|
|
$NDK_ROOT/build/tools/make-standalone-toolchain.sh --platform=android-21 --arch=x86_64 --install-dir=$ANDROID_TC_X86_64
|
|
fi
|