Fixes for ifort 2018
1. the already deprecated -openmp option was removed in 2018, switch to -fopenmp 2. add leading blank in search for "zho_ge__" symbol to work around misleading tags in the 2018 assembly Expected to fix #1548
This commit is contained in:
parent
88e224f4c0
commit
d2b9389f1b
4
f_check
4
f_check
|
@ -97,7 +97,7 @@ if ($compiler eq "") {
|
|||
|
||||
if ($data =~ /Intel/) {
|
||||
$vendor = INTEL;
|
||||
$openmp = "-openmp";
|
||||
$openmp = "-fopenmp";
|
||||
}
|
||||
|
||||
if ($data =~ /Sun Fortran/) {
|
||||
|
@ -155,7 +155,7 @@ if ($compiler eq "") {
|
|||
if ($compiler =~ /ifort/) {
|
||||
$vendor = INTEL;
|
||||
$bu = "_";
|
||||
$openmp = "-openmp";
|
||||
$openmp = "-fopenmp";
|
||||
}
|
||||
|
||||
if ($compiler =~ /pathf/) {
|
||||
|
|
Loading…
Reference in New Issue