diff options
author | Sam Lantinga <slouken@libsdl.org> | 2018-01-27 12:05:26 -0800 |
---|---|---|
committer | Sam Lantinga <slouken@libsdl.org> | 2018-01-27 12:05:26 -0800 |
commit | fde11a4abc3e1f45b59546df494ee7379f708593 (patch) | |
tree | 9dcff6730f5263b69147723dae07391311b11db4 /build-scripts | |
parent | 2173d3e946893efddc71eb62f39e8e802d39bd1e (diff) |
Fixed bug 4065 - SDL_wave.c fail to compile in armeabi with ndk r16b
Sylvain
armeabi is almost deprecated for android-ndk higher that r13b.
either it doesn't compile (ICE), or it executes wrongly (using long long for instance).
android people advices to use armeabi-v7a (or use r13b).
Diffstat (limited to 'build-scripts')
-rwxr-xr-x | build-scripts/androidbuildlibs.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build-scripts/androidbuildlibs.sh b/build-scripts/androidbuildlibs.sh index 4a0bb2f782..934becc684 100755 --- a/build-scripts/androidbuildlibs.sh +++ b/build-scripts/androidbuildlibs.sh @@ -68,7 +68,7 @@ ndk-build \ NDK_OUT=$obj \ NDK_LIBS_OUT=$lib \ APP_BUILD_SCRIPT=Android.mk \ - APP_ABI="all" \ - APP_PLATFORM=android-12 \ + APP_ABI="armeabi-v7a arm64-v8a x86 x86_64" \ + APP_PLATFORM=android-14 \ APP_MODULES="SDL2 SDL2_main" \ $ndk_args |