Fixed missing arch.
authorArmin Novak <armin.novak@thincast.com>
Fri, 3 Jun 2016 07:39:48 +0000 (09:39 +0200)
committerArmin Novak <armin.novak@thincast.com>
Fri, 3 Jun 2016 07:42:00 +0000 (09:42 +0200)
scripts/android-build.conf

index f2331a8..03e57d9 100644 (file)
@@ -1,6 +1,14 @@
 #!/bin/bash
 #
 # Android build confguration
+#
+# Note: This is a simple configuration to build all
+#       architectures in one rush.
+#       Since android 64 bit support was introduced with NDK API 21
+#       this is the minimal common denominator.
+#       If you require support for older NDK API levels,
+#       create seperate configurations for each NDK API level
+#       and architecture you want to support.
 SCRIPT_PATH=$(dirname "${BASH_SOURCE[0]}")
 SCRIPT_PATH=$(realpath "$SCRIPT_PATH")
 
@@ -20,4 +28,4 @@ BUILD_SRC=$SRC_DIR/build
 
 CMAKE_BUILD_TYPE=Debug
 
-BUILD_ARCH="armeabi armeabi-v7a x86 arm64-v8a x86_64 mips64"
+BUILD_ARCH="armeabi armeabi-v7a x86 mips arm64-v8a x86_64 mips64"