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
parent
commit
b231fbcd67
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      f_check
  2. +1
    -1
      f_check.pl

+ 1
- 1
f_check View File

@@ -98,7 +98,7 @@ else
vendor=FLANG
openmp='-fopenmp'
;;
*ifx*)
*ifort*|*ifx*)
vendor=INTEL
openmp='-fopenmp'
;;


+ 1
- 1
f_check.pl View File

@@ -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/) {


Loading…
Cancel
Save