aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2019-09-05 23:45:54 +0300
committerGitHub <noreply@github.com>2019-09-05 23:45:54 +0300
commitd67d5411bb7fa00226365ebcfc475af08a4ba721 (patch)
treef0636ff994401375e4e1d38cb7d4559e58462d67 /mesonbuild/compilers
parent7b765155347005e01bdd9ae8bfdad7182f27f852 (diff)
parentb9af8f8b6b394903d64e4886712b38a056cd876f (diff)
downloadmeson-d67d5411bb7fa00226365ebcfc475af08a4ba721.zip
meson-d67d5411bb7fa00226365ebcfc475af08a4ba721.tar.gz
meson-d67d5411bb7fa00226365ebcfc475af08a4ba721.tar.bz2
Merge pull request #5823 from scivision/linker-pgi-linux
PGI compiler fixes
Diffstat (limited to 'mesonbuild/compilers')
-rw-r--r--mesonbuild/compilers/mixins/pgi.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/mesonbuild/compilers/mixins/pgi.py b/mesonbuild/compilers/mixins/pgi.py
index c13c7bc..38c7ffd 100644
--- a/mesonbuild/compilers/mixins/pgi.py
+++ b/mesonbuild/compilers/mixins/pgi.py
@@ -56,7 +56,7 @@ class PGICompiler:
def get_pic_args(self) -> typing.List[str]:
# PGI -fPIC is Linux only.
- if self.compiler_type.is_linux_compiler():
+ if self.compiler_type.is_standard_compiler:
return ['-fPIC']
return []
@@ -97,3 +97,7 @@ class PGICompiler:
'-I{}'.format(hdr.parent)]
else:
return []
+
+ def thread_flags(self, env):
+ # PGI cannot accept -pthread, it's already threaded
+ return []