From 14ac2b063a1caa4d7f4b25d6b21ef36dbc9d04cd Mon Sep 17 00:00:00 2001 From: Greg Becker Date: Thu, 7 Dec 2023 13:17:03 -0800 Subject: [PATCH] cce compiler: remove vestigial compiler names (#41303) --- lib/spack/spack/compilers/cce.py | 8 ++++---- 1 file 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 @@ def __init__(self, *args, **kwargs): 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"]