forked from organicmaps/organicmaps
[android] Enabled use of hard-math ABI for minor math ops speed-up
This commit is contained in:
parent
c1caaab3ce
commit
30d59480fc
2 changed files with 3 additions and 3 deletions
|
@ -2,7 +2,7 @@ NDK_TOOLCHAIN_VERSION := 4.6
|
|||
APP_PLATFORM := android-5
|
||||
|
||||
ifeq (x$(NDK_ABI_TO_BUILD), x)
|
||||
APP_ABI := armeabi armeabi-v7a x86
|
||||
APP_ABI := armeabi armeabi-v7a-hard x86
|
||||
else
|
||||
APP_ABI := $(NDK_ABI_TO_BUILD)
|
||||
endif
|
||||
|
|
|
@ -6,7 +6,7 @@ set -e -u -x
|
|||
LOCAL_DIRNAME="${PWD}/$(dirname "$0")"
|
||||
|
||||
if [[ $# < 1 ]]; then
|
||||
echo "Usage: $0 <debug|release|production> [armeabi|armeabi-v7a|mips|x86] [android-PLATFORM_NUMBER]"
|
||||
echo "Usage: $0 <debug|release|production> [armeabi|armeabi-v7a|armeabi-v7a-hard|mips|x86] [android-PLATFORM_NUMBER]"
|
||||
exit 1
|
||||
fi
|
||||
CONFIGURATION="$1"
|
||||
|
@ -28,7 +28,7 @@ fi
|
|||
if [[ $# > 1 ]] ; then
|
||||
NDK_ABI_LIST=$2
|
||||
else
|
||||
NDK_ABI_LIST=(armeabi armeabi-v7a x86)
|
||||
NDK_ABI_LIST=(armeabi armeabi-v7a-hard x86)
|
||||
fi
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue