diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2019-04-29 21:00:40 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-05-05 21:58:08 +0300 |
commit | 541f2ce535b88ee5c658aa4054aa3eb3fcf42342 (patch) | |
tree | 2b5d2208561b3d1b60725ddd9fea937135e6e2f6 /mesonbuild/compilers/fortran.py | |
parent | a0cf7ad3d8fbafacb7146488d8e56c301646aa92 (diff) | |
download | meson-revert5323.tar.gz |
Revert "Merge pull request #5323 from scivision/pgiflang"revert5323
This reverts commit 9cd89f55fca0933dd2897ac7470c5827d939e0ac, reversing
changes made to 60969d99d33001317c569a9b37d3b9efae08d387.
Diffstat (limited to 'mesonbuild/compilers/fortran.py')
-rw-r--r-- | mesonbuild/compilers/fortran.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/compilers/fortran.py b/mesonbuild/compilers/fortran.py index b4eb3273b..79de71ce6 100644 --- a/mesonbuild/compilers/fortran.py +++ b/mesonbuild/compilers/fortran.py @@ -422,9 +422,9 @@ class PathScaleFortranCompiler(FortranCompiler): class PGIFortranCompiler(PGICompiler, FortranCompiler): - def __init__(self, exelist, version, compiler_type, is_cross, exe_wrapper=None, **kwags): + def __init__(self, exelist, version, is_cross, exe_wrapper=None, **kwags): FortranCompiler.__init__(self, exelist, version, is_cross, exe_wrapper, **kwags) - PGICompiler.__init__(self, compiler_type) + PGICompiler.__init__(self, CompilerType.PGI_STANDARD) def language_stdlib_only_link_flags(self) -> List[str]: return ['-lpgf90rtl', '-lpgf90', '-lpgf90_rpm1', '-lpgf902', |