From 36251c397fe35bb541c65d8704ca080968cb32c6 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Fri, 25 Apr 2014 17:51:24 +0200 Subject: [PATCH] config/optimize: dont build with '-ffast-math' Signed-off-by: Stephan Raue --- config/optimize | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/optimize b/config/optimize index bdf05922eb..24820dbc10 100644 --- a/config/optimize +++ b/config/optimize @@ -4,7 +4,7 @@ if [ "$OPTIMIZATIONS" = normal ];then fi if [ "$OPTIMIZATIONS" = size ];then - GCC_OPTIM="-Os -fexcess-precision=fast -ffast-math" + GCC_OPTIM="-Os -fexcess-precision=fast" LD_OPTIM="-Wl,--as-needed" fi