diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-10-09 09:03:04 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-10-09 11:41:30 +0300 |
commit | 835a0a97ab99d92b0c5f9762f585b4c837bcc0ba (patch) | |
tree | 368fa8849aa6a004fc51ca3defa23cc0cdf0e1cc | |
parent | f9a12d8dd35882b5d58a12b70ff8d2f9ee8b6acf (diff) |
Do generate Thumb code, I think the current NDK (r8b) handles it fine
Change-Id: If331d969f419d72076faff661bd0fbeb52bd24c4
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 8d1f90444a58..4c555371c1b0 100644 --- a/configure.in +++ b/configure.in @@ -186,7 +186,7 @@ if test -n "$with_android_ndk"; then if test $host_cpu = arm; then ANDROID_APP_ABI=armeabi-v7a - ANDROIDCFLAGS="-march=armv7-a -mfloat-abi=softfp -mfpu=neon -Wl,--fix-cortex-a8" + ANDROIDCFLAGS="-march=armv7-a -mfloat-abi=softfp -mthumb -mfpu=neon -Wl,--fix-cortex-a8" elif test $host_cpu = mips; then ANDROID_APP_ABI=mips ANDROIDCFLAGS="" |