diff --git a/build/make/configure.sh b/build/make/configure.sh index a65d395..579e0d6 100755 --- a/build/make/configure.sh +++ b/build/make/configure.sh @@ -172,6 +172,7 @@ add_cflags() { add_cflags_only() { + log_echo "Adding $@ to CFLAGS" CFLAGS="${CFLAGS} $@" } @@ -792,7 +793,7 @@ process_common_toolchain() { arm*) # on arm, isa versions are supersets case ${tgt_isa} in - armv7) + armv7*) soft_enable neon soft_enable media soft_enable edsp @@ -820,7 +821,9 @@ process_common_toolchain() { arch_int=${arch_int%%te} check_add_asflags --defsym ARCHITECTURE=${arch_int} tune_cflags="-mtune=" - if [ ${tgt_isa} = "armv7" ]; then + + case ${tgt_isa} in + armv7*) if [ -z "${float_abi}" ]; then check_cpp <