config/optimize: dont build with '-ffast-math'

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2014-04-25 17:51:24 +02:00
parent e8f62dccf7
commit 36251c397f

View File

@ -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