Skip to content

Commit

Permalink
Fix for Android NDK r12
Browse files Browse the repository at this point in the history
`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.
  • Loading branch information
modocache committed Jun 22, 2016
1 parent a73dc81 commit cca79df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cca79df

Please sign in to comment.