From 30d59480fc241ee1c14f7435b0edcc1b0a40d5b9 Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Fri, 7 Mar 2014 13:45:52 +0300 Subject: [PATCH] [android] Enabled use of hard-math ABI for minor math ops speed-up --- android/jni/Application.mk | 2 +- tools/autobuild/android.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/android/jni/Application.mk b/android/jni/Application.mk index 6c7f9906cc..0c1c6d6d00 100644 --- a/android/jni/Application.mk +++ b/android/jni/Application.mk @@ -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 diff --git a/tools/autobuild/android.sh b/tools/autobuild/android.sh index a682af3e03..ef7384e6a6 100644 --- a/tools/autobuild/android.sh +++ b/tools/autobuild/android.sh @@ -6,7 +6,7 @@ set -e -u -x LOCAL_DIRNAME="${PWD}/$(dirname "$0")" if [[ $# < 1 ]]; then - echo "Usage: $0 [armeabi|armeabi-v7a|mips|x86] [android-PLATFORM_NUMBER]" + echo "Usage: $0 [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