1From a72bf499a0674fc75eedf15008b424e28f67e4bd Mon Sep 17 00:00:00 2001 2From: Andrei Gherzan <andrei@gherzan.ro> 3Date: Fri, 2 Feb 2018 15:10:08 +0200 4Subject: [PATCH] dont default to cortex-a9 with neon 5 6-march flag is not in CFLAGS so this will always default to 7 -mcpu=cortex-a8 -mfpu=neon. 8 9Upstream-Status: Pending 10 11Signed-off-by: Andrei Gherzan <andrei@gherzan.ro> 12Signed-off-by: Maxin B. John <maxin.john@intel.com> 13--- 14 configure | 3 --- 15 1 file changed, 3 deletions(-) 16 17diff --git a/configure b/configure 18index 0e3ef23..955b993 100755 19--- a/configure 20+++ b/configure 21@@ -911,9 +911,6 @@ if [ $asm = auto -a \( $ARCH = X86 -o $ARCH = X86_64 \) ] ; then 22 fi 23 24 if [ $asm = auto -a $ARCH = ARM ] ; then 25- # set flags so neon is built by default 26- [ $compiler == CL ] || echo $CFLAGS | grep -Eq '(-mcpu|-march|-mfpu)' || CFLAGS="$CFLAGS -mcpu=cortex-a8 -mfpu=neon" 27- 28 cc_check '' '' '__asm__("add r0, r1, r2");' && define HAVE_ARM_INLINE_ASM 29 if [ $compiler = CL ] && cpp_check '' '' 'defined(_M_ARM) && _M_ARM >= 7' ; then 30 define HAVE_ARMV6 31-- 322.4.0 33 34