We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3f9af3 commit 8d0dc88Copy full SHA for 8d0dc88
1 file changed
easybuild/toolchains/pgi.py
@@ -32,8 +32,12 @@
32
"""
33
34
from easybuild.toolchains.compiler.pgi import Pgi
35
+from easybuild.toolchains.gcccore import GCCcore
36
37
38
class PgiToolchain(Pgi):
39
"""Simple toolchain with just the PGI compilers."""
40
NAME = 'PGI'
41
+ # use GCCcore as subtoolchain rather than GCC, since two 'real' compiler-only toolchains don't mix well,
42
+ # in particular in a hierarchical module naming scheme
43
+ SUBTOOLCHAIN = GCCcore.NAME
0 commit comments