From cca79df1a245d56e822026e85963ae926523035e Mon Sep 17 00:00:00 2001 From: Brian Gesiak Date: Wed, 22 Jun 2016 13:38:02 -0700 Subject: [PATCH] Fix for Android NDK r12 `android-ndk-r12/sources/android/support/Android.mk` now conditionally compiles based on the `LIBCXX_FORCE_REBUILD` environment variable. Add the variable to our `build.sh` invocation in order to ensure we actually build the stuff we need. --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 347666f..72af3d6 100755 --- a/build.sh +++ b/build.sh @@ -24,7 +24,7 @@ mkdir -p android_support cd android_support ln -sf $NDK/sources/android/support jni -ndk-build -j$NCPU APP_ABI=$ARCH || exit 1 +ndk-build -j$NCPU APP_ABI=$ARCH LIBCXX_FORCE_REBUILD=true || exit 1 cp -f obj/local/$ARCH/libandroid_support.a ../ } || exit 1