summaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/__init__.py
diff options
context:
space:
mode:
authorMichael Hirsch, Ph.D <scivision@users.noreply.github.com>2019-01-21 13:09:36 -0500
committerJussi Pakkanen <jpakkane@gmail.com>2019-01-21 20:09:36 +0200
commit72486afd08d66d6323c2113739dcfff74813058b (patch)
treeba7ac44b91fc1324c53fb8db12b884fdefbb8249 /mesonbuild/compilers/__init__.py
parent20248fa919c5a2e4f9ac1f88f087862da52abfbb (diff)
downloadmeson-72486afd08d66d6323c2113739dcfff74813058b.tar.gz
Add PGI C and C++ compilers (#4803)
Diffstat (limited to 'mesonbuild/compilers/__init__.py')
-rw-r--r--mesonbuild/compilers/__init__.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/mesonbuild/compilers/__init__.py b/mesonbuild/compilers/__init__.py
index b4807c6ef..c568a9862 100644
--- a/mesonbuild/compilers/__init__.py
+++ b/mesonbuild/compilers/__init__.py
@@ -78,6 +78,8 @@ __all__ = [
'ObjCPPCompiler',
'Open64FortranCompiler',
'PathScaleFortranCompiler',
+ 'PGICCompiler',
+ 'PGICPPCompiler',
'PGIFortranCompiler',
'RustCompiler',
'CcrxCCompiler',
@@ -127,6 +129,7 @@ from .c import (
GnuCCompiler,
ElbrusCCompiler,
IntelCCompiler,
+ PGICCompiler,
CcrxCCompiler,
VisualStudioCCompiler,
)
@@ -139,6 +142,7 @@ from .cpp import (
GnuCPPCompiler,
ElbrusCPPCompiler,
IntelCPPCompiler,
+ PGICPPCompiler,
CcrxCPPCompiler,
VisualStudioCPPCompiler,
)