diff options
author | urbanjost <urbanjost@comcast.net> | 2020-12-03 23:07:03 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-03 23:07:03 -0500 |
commit | 185706c62138479dea53b3cb1e49e3f48045a8da (patch) | |
tree | 9bb1c7ee716b57c22b3511fe7193f9e57fce3768 /bootstrap | |
parent | add0d607aea2e7ce2e04dd3161b549f4210224fc (diff) | |
parent | af67eaedf86b312c86b9f081a169cc6e220f0cb6 (diff) | |
download | fpm-185706c62138479dea53b3cb1e49e3f48045a8da.tar.gz fpm-185706c62138479dea53b3cb1e49e3f48045a8da.zip |
Merge branch 'master' into compiler
Diffstat (limited to 'bootstrap')
-rw-r--r-- | bootstrap/src/Fpm.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bootstrap/src/Fpm.hs b/bootstrap/src/Fpm.hs index 943393e..9fc1c91 100644 --- a/bootstrap/src/Fpm.hs +++ b/bootstrap/src/Fpm.hs @@ -639,6 +639,7 @@ defineCompilerSettings specifiedFlags compiler release , "-march=native" , "-ffast-math" , "-funroll-loops" + , "-fcoarray=single" ] else [ "-Wall" @@ -650,6 +651,7 @@ defineCompilerSettings specifiedFlags compiler release , "-fbounds-check" , "-fcheck-array-temporaries" , "-fbacktrace" + , "-fcoarray=single" ] fs -> fs in return $ CompilerSettings { compilerSettingsCompiler = compiler |