mirror of
git://git.savannah.gnu.org/config.git
synced 2025-05-26 09:06:38 +12:00
config.sub: don’t override OS for c90-cray.
Fix a typo in the logic for handling the OS default for c90-cray, causing c90-cray-[anything] to get overridden to c90-cray-unicos. I’m not aware of any non-Unicos operating systems for the C90, but let’s not be a pointless obstacle for anyone who wants to write one. (For testing purposes I used Linux, because config.sub’s generic logic accepts it in combination with any CPU whatsoever.) Signed-off-by: Dmitry V. Levin <ldv@altlinux.org>
This commit is contained in:
parent
30dd89683d
commit
fc40088525
2
config.sub
vendored
2
config.sub
vendored
@ -1031,7 +1031,7 @@ case $cpu-$vendor in
|
||||
;;
|
||||
c90-unknown | c90-cray)
|
||||
vendor=cray
|
||||
basic_os=${Basic_os:-unicos}
|
||||
basic_os=${basic_os:-unicos}
|
||||
;;
|
||||
fx80-unknown)
|
||||
vendor=alliant
|
||||
|
@ -203,6 +203,11 @@ c6x-unknown-elf tic6x-unknown-elf
|
||||
c8051 c8051-unknown-elf
|
||||
c8051-elf c8051-unknown-elf
|
||||
c90 c90-cray-unicos
|
||||
c90-cray c90-cray-unicos
|
||||
c90-linux c90-cray-linux-gnu
|
||||
c90-unicos c90-cray-unicos
|
||||
c90-unknown-linux c90-cray-linux-gnu
|
||||
c90-unknown-unicos c90-cray-unicos
|
||||
cegcc arm-unknown-cegcc
|
||||
clipper clipper-unknown-none
|
||||
clipper-clix clipper-intergraph-clix
|
||||
|
Loading…
x
Reference in New Issue
Block a user