cce compiler: remove vestigial compiler names (#41303)

This commit is contained in:
Greg Becker 2023-12-07 13:17:03 -08:00 committed by GitHub
parent edf4d6659d
commit 14ac2b063a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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"]