Fixed missing arch.
This commit is contained in:
parent
e40546485d
commit
be33a11754
@ -1,6 +1,14 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
#
|
#
|
||||||
# Android build confguration
|
# 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=$(dirname "${BASH_SOURCE[0]}")
|
||||||
SCRIPT_PATH=$(realpath "$SCRIPT_PATH")
|
SCRIPT_PATH=$(realpath "$SCRIPT_PATH")
|
||||||
|
|
||||||
@ -20,4 +28,4 @@ BUILD_SRC=$SRC_DIR/build
|
|||||||
|
|
||||||
CMAKE_BUILD_TYPE=Debug
|
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"
|
||||||
|
Loading…
Reference in New Issue
Block a user