Squashed 'third_party/mason/' changes from 6b4c359..c7a9670

git-subtree-dir: third_party/mason
git-subtree-split: c7a967003a7113a17faafe3b41082ad1ae3f1c2f
This commit is contained in:
Daniel J. Hofmann
2017-02-15 11:48:43 +01:00
parent 6f27aae022
commit ce1141982b
155 changed files with 3916 additions and 336 deletions
@@ -0,0 +1,7 @@
sudo: false
script:
- ./mason build ${MASON_NAME} ${MASON_VERSION}
after_success:
- ./mason publish ${MASON_NAME} ${MASON_VERSION}
+13
View File
@@ -0,0 +1,13 @@
#!/usr/bin/env bash
MASON_NAME=android-ndk
MASON_VERSION=$(basename $(dirname "${BASH_SOURCE[0]}"))
MASON_LIB_FILE=
export MASON_ANDROID_TOOLCHAIN="arm-linux-androideabi"
export MASON_CFLAGS="-target armv7-none-linux-androideabi -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-integrated-as -mthumb"
export MASON_LDFLAGS="-Wl,--fix-cortex-a8 -Wl,--exclude-libs,libunwind.a"
export MASON_ANDROID_ABI="armeabi-v7a"
export MASON_ANDROID_NDK_ARCH="arm"
. ${MASON_DIR}/scripts/android-ndk/script-${MASON_VERSION##*-}.sh