]> git.sesse.net Git - x264/commitdiff
ARM: do not override the toolchain default for FPU ABI
authorRémi Denis-Courmont <remi@remlab.net>
Thu, 30 Jun 2011 21:07:43 +0000 (14:07 -0700)
committerFiona Glaser <fiona@x264.com>
Sun, 10 Jul 2011 02:39:58 +0000 (19:39 -0700)
configure

index 41f7a7c4d2ecda821cd59ac1af78941afe4aa994..9ce13bc18f0c087f2f543bf138cc52c717d7bb9d 100755 (executable)
--- a/configure
+++ b/configure
@@ -613,7 +613,7 @@ fi
 
 if [ $asm = auto -a $ARCH = ARM ] ; then
     # set flags so neon is built by default
-    echo $CFLAGS | grep -Eq '(-mcpu|-march|-mfpu|-mfloat-abi)' || CFLAGS="$CFLAGS -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp"
+    echo $CFLAGS | grep -Eq '(-mcpu|-march|-mfpu)' || CFLAGS="$CFLAGS -mcpu=cortex-a8 -mfpu=neon"
 
     if  cc_check '' '' '__asm__("rev ip, ip");' ; then      define HAVE_ARMV6
         cc_check '' '' '__asm__("movt r0, #0");'         && define HAVE_ARMV6T2