git-subtree-dir: third_party/mason git-subtree-split: c7a967003a7113a17faafe3b41082ad1ae3f1c2f
14 lines
392 B
Bash
Executable File
14 lines
392 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
MASON_NAME=android-ndk
|
|
MASON_VERSION=$(basename $(dirname "${BASH_SOURCE[0]}"))
|
|
MASON_LIB_FILE=
|
|
|
|
export MASON_ANDROID_TOOLCHAIN="x86_64-linux-android"
|
|
export MASON_CFLAGS="-target x86_64-none-linux-android"
|
|
export MASON_LDFLAGS=""
|
|
export MASON_ANDROID_ABI="x86_64"
|
|
export MASON_ANDROID_NDK_ARCH="x86_64"
|
|
|
|
. ${MASON_DIR}/scripts/android-ndk/script-${MASON_VERSION##*-}.sh
|