cce compiler: remove vestigial compiler names (#41303)
This commit is contained in:
parent
edf4d6659d
commit
14ac2b063a
1 changed files with 4 additions and 4 deletions
|
@ -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"]
|
||||
|
|
Loading…
Reference in a new issue