Fix PGI Fortran compiler detection.

pull/1046/merge
Jussi Pakkanen 8 years ago
parent 3b55f6de8c
commit 411e88a5ab
  1. 2
      mesonbuild/environment.py

@ -457,7 +457,7 @@ class Environment():
if 'PathScale EKOPath(tm)' in err:
return PathScaleFortranCompiler([compiler], version, is_cross, exe_wrap)
if 'pgf90' in out:
if 'PGI Compilers' in out:
return PGIFortranCompiler([compiler], version, is_cross, exe_wrap)
if 'Open64 Compiler Suite' in err:

Loading…
Cancel
Save