Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
slouken committed Jan 27, 2018
1 parent 2d7420f commit 2ceeb99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build-scripts/androidbuildlibs.sh
Expand Up @@ -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

0 comments on commit 2ceeb99

Please sign in to comment.