Browse Source
Merge pull request #3858 from glennpj/ifort
Patch for Intel Fortran compiler
tags/v0.3.22^2
Martin Kroeker
GitHub
2 years ago
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
2 deletions
-
f_check
-
f_check.pl
|
|
@@ -98,7 +98,7 @@ else |
|
|
|
vendor=FLANG |
|
|
|
openmp='-fopenmp' |
|
|
|
;; |
|
|
|
*ifx*) |
|
|
|
*ifort*|*ifx*) |
|
|
|
vendor=INTEL |
|
|
|
openmp='-fopenmp' |
|
|
|
;; |
|
|
|
|
|
@@ -90,7 +90,7 @@ if ($compiler eq "") { |
|
|
|
if ($compiler =~ /flang/) { |
|
|
|
$vendor = FLANG; |
|
|
|
$openmp = "-fopenmp"; |
|
|
|
} elsif ($compiler =~ /ifx/) { |
|
|
|
} elsif ($compiler =~ /ifort/ || $compiler =~ /ifx/) { |
|
|
|
$vendor = INTEL; |
|
|
|
$openmp = "-fopenmp"; |
|
|
|
} elsif ($compiler =~ /pgf/ || $compiler =~ /nvf/) { |
|
|
|