summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2019-06-20 21:07:29 -0500
committerPeter Scheibel <scheibel1@llnl.gov>2019-06-20 19:07:29 -0700
commit9b8215ce9db034991e496ce417e8251360699842 (patch)
treee28b0bf5a64915cb5ac62ae2b685a5dbabc59952 /lib
parenta76bacd594a24921914c24b72db2e6f4e7854e60 (diff)
downloadspack-9b8215ce9db034991e496ce417e8251360699842.tar.gz
spack-9b8215ce9db034991e496ce417e8251360699842.tar.bz2
spack-9b8215ce9db034991e496ce417e8251360699842.tar.xz
spack-9b8215ce9db034991e496ce417e8251360699842.zip
Ignore pgcc-llvm and friends, default to pgcc (#11703)
This change reverts to the previous behavior of only looking for pgcc and friends, not pgcc-llvm and friends. The llvm variant doesn't support all the same features as the traditional variant of the pgi code generator; this change avoids treating the llvm variant as a default pgi compiler. This retains the changes in #10704 which accept the "LLVM" suffix of the version string of the PGI compiler, which allows users to explicitly add the llvm-pgi compiler if desired.
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/compilers/pgi.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/spack/spack/compilers/pgi.py b/lib/spack/spack/compilers/pgi.py
index ff3776c0db..1b382fe075 100644
--- a/lib/spack/spack/compilers/pgi.py
+++ b/lib/spack/spack/compilers/pgi.py
@@ -20,10 +20,6 @@ class Pgi(Compiler):
# Subclasses use possible names of Fortran 90 compiler
fc_names = ['pgfortran', 'pgf95', 'pgf90']
- # LLVM-enabled PGI compilers add a '-llvm' suffix:
- # pgcc-llvm, pgc++llvm, pgfortran-llvm
- suffixes = ['-?llvm']
-
# Named wrapper links within build_env_path
link_paths = {'cc': 'pgi/pgcc',
'cxx': 'pgi/pgc++',