Merge pull request #1551 from martin-frbg/f_check_fix
Fixes for ifort 2018
This commit is contained in:
commit
7e3151ead7
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