Skip to content

Commit cca79df

Browse files
committed
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.
1 parent a73dc81 commit cca79df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ mkdir -p android_support
2424
cd android_support
2525
ln -sf $NDK/sources/android/support jni
2626

27-
ndk-build -j$NCPU APP_ABI=$ARCH || exit 1
27+
ndk-build -j$NCPU APP_ABI=$ARCH LIBCXX_FORCE_REBUILD=true || exit 1
2828
cp -f obj/local/$ARCH/libandroid_support.a ../
2929

3030
} || exit 1

0 commit comments

Comments
 (0)