diff options
author | Greg Becker <becker33@llnl.gov> | 2023-12-07 13:17:03 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-07 15:17:03 -0600 |
commit | 14ac2b063a1caa4d7f4b25d6b21ef36dbc9d04cd (patch) | |
tree | a1dac35d215bbb4eaaa3c1fdf7b8c68e7031cca1 /lib | |
parent | edf4d6659d0c4173a3ad1a416fdb411e697e5268 (diff) | |
download | spack-14ac2b063a1caa4d7f4b25d6b21ef36dbc9d04cd.tar.gz spack-14ac2b063a1caa4d7f4b25d6b21ef36dbc9d04cd.tar.bz2 spack-14ac2b063a1caa4d7f4b25d6b21ef36dbc9d04cd.tar.xz spack-14ac2b063a1caa4d7f4b25d6b21ef36dbc9d04cd.zip |
cce compiler: remove vestigial compiler names (#41303)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/compilers/cce.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/spack/spack/compilers/cce.py b/lib/spack/spack/compilers/cce.py index 283f1b5508..607e3e91cc 100644 --- a/lib/spack/spack/compilers/cce.py +++ b/lib/spack/spack/compilers/cce.py @@ -20,16 +20,16 @@ class Cce(Compiler): self.version_argument = "-V" # Subclasses use possible names of C compiler - cc_names = ["craycc", "cc"] + cc_names = ["craycc"] # Subclasses use possible names of C++ compiler - cxx_names = ["crayCC", "CC"] + cxx_names = ["crayCC"] # Subclasses use possible names of Fortran 77 compiler - f77_names = ["crayftn", "ftn"] + f77_names = ["crayftn"] # Subclasses use possible names of Fortran 90 compiler - fc_names = ["crayftn", "ftn"] + fc_names = ["crayftn"] # MacPorts builds gcc versions with prefixes and -mp-X.Y suffixes. suffixes = [r"-mp-\d\.\d"] |