]> granicus.if.org Git - libx264/commitdiff
configure: Drop workaround for obsolete gcc 4.2 on ARM
authorDiego Biurrun <diego@biurrun.de>
Wed, 7 May 2014 10:47:37 +0000 (12:47 +0200)
committerFiona Glaser <fiona@x264.com>
Sun, 20 Jul 2014 03:52:59 +0000 (20:52 -0700)
configure

index a4f4e9f7d0ed02ed60195425d78e851eb0873eec..f3c0f2305aa00bb38f4e1371cddf5508770d8841 100755 (executable)
--- a/configure
+++ b/configure
@@ -997,10 +997,6 @@ fi
 
 if [ "$debug" = "yes" ]; then
     CFLAGS="-O1 -g $CFLAGS"
-elif [ $ARCH = ARM ]; then
-    # arm-gcc-4.2 produces incorrect output with -ffast-math
-    # and it doesn't save any speed anyway on 4.4, so disable it
-    CFLAGS="-O3 -fno-fast-math $CFLAGS"
 else
     CFLAGS="-O3 -ffast-math $CFLAGS"
 fi