From c94252a14ca004ec71ad0cfd60ba306b558af15b Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Sat, 8 Feb 2014 12:55:27 +0900 Subject: [PATCH] configure - don't add -mfpu-neon on arm - this breaks building for armv6/4... --- configure.ac | 3 --- 1 file changed, 3 deletions(-) diff --git a/configure.ac b/configure.ac index a7287d057a..ed4ddfbf60 100644 --- a/configure.ac +++ b/configure.ac @@ -510,8 +510,6 @@ case $host_cpu in arm*) build_cpu_neon="yes" AC_MSG_CHECKING([whether to use NEON instructions]) - CFLAGS_save="${CFLAGS}" - CFLAGS="${CFLAGS} -mfpu=neon" AC_TRY_COMPILE([#include ], [asm volatile ("vqadd.u8 d0, d1, d0\n")], [ @@ -523,7 +521,6 @@ case $host_cpu in AC_MSG_RESULT([no]) build_cpu_neon="no" ]) - CFLAGS="${CFLAGS_save}" ;; esac