diff options
author | LKedward <laurence.kedward@bristol.ac.uk> | 2020-12-18 13:47:04 +0000 |
---|---|---|
committer | LKedward <laurence.kedward@bristol.ac.uk> | 2020-12-18 13:47:04 +0000 |
commit | 2f5a8edefbf70b0753109eddc80314c0cad537c0 (patch) | |
tree | dfc50855c9a75edc49311da359b791ec95099909 /bootstrap/src/Fpm.hs | |
parent | f8848468415637e25472ea8f5534c610a4a54e8e (diff) | |
download | fpm-2f5a8edefbf70b0753109eddc80314c0cad537c0.tar.gz fpm-2f5a8edefbf70b0753109eddc80314c0cad537c0.zip |
Remove -ffast-math from Haskell fpm default release flags
Diffstat (limited to 'bootstrap/src/Fpm.hs')
-rw-r--r-- | bootstrap/src/Fpm.hs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/bootstrap/src/Fpm.hs b/bootstrap/src/Fpm.hs index 10e14fe..56e2d90 100644 --- a/bootstrap/src/Fpm.hs +++ b/bootstrap/src/Fpm.hs @@ -681,7 +681,6 @@ defineCompilerSettings specifiedFlags compiler release , "-fmax-errors=1" , "-O3" , "-march=native" - , "-ffast-math" , "-funroll-loops" , "-fcoarray=single" ] @@ -714,7 +713,6 @@ defineCompilerSettings specifiedFlags compiler release , "-fmax-errors=1" , "-O3" , "-march=native" - , "-ffast-math" , "-funroll-loops" ] else @@ -742,7 +740,6 @@ defineCompilerSettings specifiedFlags compiler release , "-Wimplicit-interface" , "-fPIC" , "-fmax-errors=1" - , "-ffast-math" , "-funroll-loops" ] else |