diff options
author | Brad Richardson <everythingfunctional@protonmail.com> | 2020-12-09 15:17:55 -0600 |
---|---|---|
committer | Brad Richardson <everythingfunctional@protonmail.com> | 2020-12-09 15:17:55 -0600 |
commit | 3ec6e97ccb77e01c55185d7d5a823b402f3ffca3 (patch) | |
tree | aaf57446098b935f318db40986f055848bae41ef /bootstrap/src/Fpm.hs | |
parent | 6e88f2ac8e569938e3cea7821d35ece0ce73b99c (diff) | |
download | fpm-3ec6e97ccb77e01c55185d7d5a823b402f3ffca3.tar.gz fpm-3ec6e97ccb77e01c55185d7d5a823b402f3ffca3.zip |
feat(bootstrap-ifort): use `-coarray=single` by default
Diffstat (limited to 'bootstrap/src/Fpm.hs')
-rw-r--r-- | bootstrap/src/Fpm.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap/src/Fpm.hs b/bootstrap/src/Fpm.hs index d647a10..6acf82b 100644 --- a/bootstrap/src/Fpm.hs +++ b/bootstrap/src/Fpm.hs @@ -748,7 +748,7 @@ defineCompilerSettings specifiedFlags compiler release [ "-fp-model", "precise" , "-pc", "64" , "-align", "all" - , "-coarray" + , "-coarray=single" , "-error-limit", "1" , "-reentrancy", "threaded" , "-nogen-interfaces" @@ -758,7 +758,7 @@ defineCompilerSettings specifiedFlags compiler release else [ "-warn", "all" , "-check:all:noarg_temp_created" - , "-coarray" + , "-coarray=single" , "-error-limit", "1" , "-O0" , "-g" |