From 2bd932fdf053faace84028a66d8ba9e17d526456 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Wed, 7 May 2014 12:47:37 +0200 Subject: [PATCH] configure: Drop workaround for obsolete gcc 4.2 on ARM --- configure | 4 ---- 1 file changed, 4 deletions(-) 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 -- 2.50.1