Fixed missing arch.

This commit is contained in:
Armin Novak 2016-06-03 09:39:48 +02:00
parent e40546485d
commit be33a11754
1 changed files with 9 additions and 1 deletions

View 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"