aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/cpp.py
diff options
context:
space:
mode:
authorMichael Hirsch, Ph.D <scivision@users.noreply.github.com>2019-04-07 00:52:03 -0400
committerMichael Hirsch, Ph.D <scivision@users.noreply.github.com>2019-04-27 23:19:01 -0400
commitee40533b61ba9694e783e3333362e91fff964171 (patch)
tree2903353b6169c0507a3a98864d426637c83d5b24 /mesonbuild/compilers/cpp.py
parent25fa5d090fab2522082280ea36484bd4ac9e9aa2 (diff)
downloadmeson-ee40533b61ba9694e783e3333362e91fff964171.zip
meson-ee40533b61ba9694e783e3333362e91fff964171.tar.gz
meson-ee40533b61ba9694e783e3333362e91fff964171.tar.bz2
better default order for fotran compiler search
correct PGI windows detection doc cleanup PGI detect
Diffstat (limited to 'mesonbuild/compilers/cpp.py')
-rw-r--r--mesonbuild/compilers/cpp.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/compilers/cpp.py b/mesonbuild/compilers/cpp.py
index 87e6ffc..55be58d 100644
--- a/mesonbuild/compilers/cpp.py
+++ b/mesonbuild/compilers/cpp.py
@@ -238,9 +238,9 @@ class GnuCPPCompiler(GnuCompiler, CPPCompiler):
class PGICPPCompiler(PGICompiler, CPPCompiler):
- def __init__(self, exelist, version, is_cross, exe_wrapper=None, **kwargs):
+ def __init__(self, exelist, version, compiler_type, is_cross, exe_wrapper=None, **kwargs):
CPPCompiler.__init__(self, exelist, version, is_cross, exe_wrapper, **kwargs)
- PGICompiler.__init__(self, CompilerType.PGI_STANDARD)
+ PGICompiler.__init__(self, compiler_type)
class ElbrusCPPCompiler(GnuCPPCompiler, ElbrusCompiler):