diff options
author | Brad Richardson <everythingfunctional@protonmail.com> | 2020-12-09 15:17:02 -0600 |
---|---|---|
committer | Brad Richardson <everythingfunctional@protonmail.com> | 2020-12-09 15:17:02 -0600 |
commit | 6e88f2ac8e569938e3cea7821d35ece0ce73b99c (patch) | |
tree | daddc2a6e99de3daf22993a3480a66e35cfa69d0 /bootstrap | |
parent | f049ae6d8e4bfd58a5b69d692dd7e6273fd158af (diff) | |
download | fpm-6e88f2ac8e569938e3cea7821d35ece0ce73b99c.tar.gz fpm-6e88f2ac8e569938e3cea7821d35ece0ce73b99c.zip |
Revert "fix(bootstrap-ifort): remove coarray option, it is not supported"
This reverts commit f049ae6d8e4bfd58a5b69d692dd7e6273fd158af.
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 1a41298..d647a10 100644 --- a/bootstrap/src/Fpm.hs +++ b/bootstrap/src/Fpm.hs @@ -748,6 +748,7 @@ defineCompilerSettings specifiedFlags compiler release [ "-fp-model", "precise" , "-pc", "64" , "-align", "all" + , "-coarray" , "-error-limit", "1" , "-reentrancy", "threaded" , "-nogen-interfaces" @@ -757,6 +758,7 @@ defineCompilerSettings specifiedFlags compiler release else [ "-warn", "all" , "-check:all:noarg_temp_created" + , "-coarray" , "-error-limit", "1" , "-O0" , "-g" |