[Android] [PATCH] build: add android ndk fixup: fix x86 and android-L build
Thomas Guillem
tom at gllm.fr
Fri Oct 10 15:46:49 CEST 2014
---
compile.sh | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/compile.sh b/compile.sh
index 9895d4d..c37cd50 100755
--- a/compile.sh
+++ b/compile.sh
@@ -314,6 +314,23 @@ else
TARGET=
fi
+# ANDROID NDK FIXUP (BLAME GOOGLE)
+config_undef ()
+{
+ sed -i 's,#define '$1' 1,/\* #undef '$1' \*/,' config.h
+}
+
+if [ ${ANDROID_ABI} = "x86" -a ${ANDROID_API} != "android-L" ] ; then
+ # NDK x86 libm.so has nanf symbol but no nanf definition, we don't known if
+ # intel devices has nanf. Assume they don't have it.
+ config_undef HAVE_NANF
+fi
+if [ ${ANDROID_API} = "android-L" ] ; then
+ # android-L has empty sys/shm.h headers that triggers shm detection but it
+ # doesn't have any shm functions and/or symbols. */
+ config_undef HAVE_SYS_SHM_H
+fi
+
echo "Building"
make $MAKEFLAGS
--
2.1.0
More information about the Android
mailing list