<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">From a72bf499a0674fc75eedf15008b424e28f67e4bd Mon Sep 17 00:00:00 2001
From: Andrei Gherzan &lt;andrei@gherzan.ro&gt;
Date: Fri, 2 Feb 2018 15:10:08 +0200
Subject: [PATCH] dont default to cortex-a9 with neon

-march flag is not in CFLAGS so this will always default to
 -mcpu=cortex-a8 -mfpu=neon.

Upstream-Status: Pending

Signed-off-by: Andrei Gherzan &lt;andrei@gherzan.ro&gt;
Signed-off-by: Maxin B. John &lt;maxin.john@intel.com&gt;
---
 configure | 3 ---
 1 file changed, 3 deletions(-)

--- a/configure
+++ b/configure
@@ -988,9 +988,6 @@ if [ $asm = auto -a \( $ARCH = X86 -o $A
 fi
 
 if [ $asm = auto -a $ARCH = ARM ] ; then
-    # set flags so neon is built by default
-    [ $compiler == CL ] || echo $CFLAGS | grep -Eq '(-mcpu|-march|-mfpu)' || CFLAGS="$CFLAGS -mcpu=cortex-a8 -mfpu=neon"
-
     cc_check '' '' '__asm__("add r0, r1, r2");' &amp;&amp; define HAVE_ARM_INLINE_ASM
     if [ $compiler = CL ] &amp;&amp; cpp_check '' '' 'defined(_M_ARM) &amp;&amp; _M_ARM &gt;= 7' ; then
         define HAVE_ARMV6
</pre></body></html>