From a3c5e63efad7c7ed26d77dcaa3117d43bc78fa16 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 16 Jul 2011 14:32:18 +0200 Subject: [PATCH] config/optimize: use -ffast-math with -O3 optimization Signed-off-by: Stephan Raue --- config/optimize | 1 + 1 file changed, 1 insertion(+) diff --git a/config/optimize b/config/optimize index 2e1f9376ce..dd390b47aa 100644 --- a/config/optimize +++ b/config/optimize @@ -7,6 +7,7 @@ fi if [ "$OPTIMIZATIONS" = speed ];then GCC_OPTIM="$GCC_OPTIM -O3" GCC_OPTIM="$GCC_OPTIM -fexcess-precision=fast" + GCC_OPTIM="$GCC_OPTIM -ffast-math" LD_OPTIM="-Wl,--as-needed" fi