aboutsummaryrefslogtreecommitdiffstats
path: root/extras/pgicxx.py
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-09-11 20:54:08 +0200
committerDavid Robillard <d@drobilla.net>2018-09-11 20:54:08 +0200
commitb6e9de2de9725e2f5a3170b8171ad1a1e95e8339 (patch)
treeaa8d80d8ca0d943e729e9f239229c741c5228924 /extras/pgicxx.py
downloadpugl-b6e9de2de9725e2f5a3170b8171ad1a1e95e8339.tar.gz
pugl-b6e9de2de9725e2f5a3170b8171ad1a1e95e8339.tar.bz2
pugl-b6e9de2de9725e2f5a3170b8171ad1a1e95e8339.zip
Squashed 'waflib/' content from commit 391d285
git-subtree-dir: waflib git-subtree-split: 391d2853c6c97efc90e466f187675e8155c866d6
Diffstat (limited to 'extras/pgicxx.py')
-rw-r--r--extras/pgicxx.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/extras/pgicxx.py b/extras/pgicxx.py
new file mode 100644
index 0000000..eae121c
--- /dev/null
+++ b/extras/pgicxx.py
@@ -0,0 +1,20 @@
+#!/usr/bin/env python
+# encoding: utf-8
+# Antoine Dechaume 2011
+
+"""
+Detect the PGI C++ compiler
+"""
+
+from waflib.Tools.compiler_cxx import cxx_compiler
+cxx_compiler['linux'].append('pgicxx')
+
+from waflib.extras import pgicc
+
+def configure(conf):
+ conf.find_pgi_compiler('CXX', 'pgCC')
+ conf.find_ar()
+ conf.gxx_common_flags()
+ conf.cxx_load_tools()
+ conf.cxx_add_flags()
+ conf.link_add_flags()