From: Diego Biurrun Date: Wed, 7 May 2014 10:47:37 +0000 (+0200) Subject: configure: Drop workaround for obsolete gcc 4.2 on ARM X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2bd932fdf053faace84028a66d8ba9e17d526456;p=libx264 configure: Drop workaround for obsolete gcc 4.2 on ARM --- diff --git a/configure b/configure index a4f4e9f7..f3c0f230 100755 --- 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