From e26cf640ca99b84c2536a9b9254777e1110af911 Mon Sep 17 00:00:00 2001 From: Kevin Mihelich Date: Sun, 15 Jan 2017 12:11:57 -0700 Subject: [PATCH] ARM fixes --- build/make/configure.sh | 21 +++++++++++---------- configure | 2 ++ 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/build/make/configure.sh b/build/make/configure.sh index 472e7dea7b..3c0831fce1 100644 --- a/build/make/configure.sh +++ b/build/make/configure.sh @@ -737,6 +737,14 @@ process_common_toolchain() { aarch64*) tgt_isa=arm64 ;; + armv5te*) + tgt_isa=armv5te + float_abi=soft + ;; + armv6*-gnueabihf) + tgt_isa=armv6 + float_abi=hard + ;; armv7*-hardfloat* | armv7*-gnueabihf | arm-*-gnueabihf) tgt_isa=armv7 float_abi=hard @@ -961,7 +969,7 @@ process_common_toolchain() { soft_enable neon ;; armv7|armv7s) - soft_enable neon + #soft_enable neon # Only enable neon_asm when neon is also enabled. enabled neon && soft_enable neon_asm # If someone tries to force it through, die. @@ -981,13 +989,6 @@ process_common_toolchain() { arch_int=${arch_int%%te} tune_cflags="-mtune=" if [ ${tgt_isa} = "armv7" ] || [ ${tgt_isa} = "armv7s" ]; then - if [ -z "${float_abi}" ]; then - check_cpp <