From ed5f6e103b34b2e7863fc342f27063c09b5ac586 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Fri, 6 May 2016 08:08:35 -0400 Subject: [PATCH] Change fpu to neon for Neon builds --- setenv-android.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setenv-android.sh b/setenv-android.sh index 3d4c351c..f68a7580 100755 --- a/setenv-android.sh +++ b/setenv-android.sh @@ -110,7 +110,7 @@ case "$THE_ARCH" in TOOLNAME_BASE="arm-linux-androideabi" AOSP_ABI="armeabi-v7a" AOSP_ARCH="arch-arm" - AOSP_FLAGS="-march=armv7-a -mfpu=vfpv3-d16 -mfloat-abi=softfp -Wl,--fix-cortex-a8 -funwind-tables -fexceptions -frtti" + AOSP_FLAGS="-march=armv7-a -mfpu=neon -mfloat-abi=softfp -Wl,--fix-cortex-a8 -funwind-tables -fexceptions -frtti" ;; armv8|armv8a|aarch64|arm64|arm64-v8a) TOOLCHAIN_BASE="aarch64-linux-android"