]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - config.sub
Fix tracing for st2w
[thirdparty/binutils-gdb.git] / config.sub
CommitLineData
84849c9c 1#! /bin/sh
378fd382 2# Configuration validation subroutine script, version 1.1.
d586f394 3# Copyright (C) 1991, 92, 93, 94, 95, 1996 Free Software Foundation, Inc.
378fd382
DZ
4# This file is (in principle) common to ALL GNU software.
5# The presence of a machine in this file suggests that SOME GNU software
6# can handle that machine. It does not imply ALL GNU software can.
032d50a9
DE
7#
8# This file is free software; you can redistribute it and/or modify
9# it under the terms of the GNU General Public License as published by
10# the Free Software Foundation; either version 2 of the License, or
11# (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
d586f394
ILT
20# Foundation, Inc., 59 Temple Place - Suite 330,
21# Boston, MA 02111-1307, USA.
a2ee3e6d 22
84849c9c
ILT
23# As a special exception to the GNU General Public License, if you
24# distribute this file as part of a program that contains a
25# configuration script generated by Autoconf, you may include it under
26# the same distribution terms that you use for the rest of that program.
4f183929
RP
27
28# Configuration subroutine to validate and canonicalize a configuration type.
29# Supply the specified configuration type as an argument.
30# If it is invalid, we print an error message on stderr and exit with code 1.
31# Otherwise, we print the canonical config type on stdout and succeed.
32
33# This file is supposed to be the same for all GNU packages
34# and recognize all the CPU types, system types and aliases
35# that are meaningful with *any* GNU software.
36# Each package is responsible for reporting which valid configurations
37# it does not support. The user should be able to distinguish
38# a failure to support a valid configuration from a meaningless
a2ee3e6d 39# configuration.
4f183929 40
a2ee3e6d
JW
41# The goal of this file is to map all the various variations of a given
42# machine specification into a single specification in the form:
43# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
27a2a371 44# It is wrong to echo any other type of specification.
8b204e6e 45
032d50a9 46if [ x$1 = x ]
23ab00aa
KR
47then
48 echo Configuration name missing. 1>&2
49 echo "Usage: $0 CPU-MFR-OPSYS" 1>&2
50 echo "or $0 ALIAS" 1>&2
51 echo where ALIAS is a recognized configuration type. 1>&2
52 exit 1
53fi
54
a2ee3e6d
JW
55# First pass through any local machine types.
56case $1 in
57 *local*)
58 echo $1
59 exit 0
60 ;;
61 *)
69e87de2 62 ;;
a2ee3e6d 63esac
b9fe720d 64
a2ee3e6d 65# Separate what the user gave into CPU-COMPANY and OS (if any).
378fd382 66basic_machine=`echo $1 | sed 's/-[^-]*$//'`
a2ee3e6d
JW
67if [ $basic_machine != $1 ]
68then os=`echo $1 | sed 's/.*-/-/'`
69else os=; fi
caebaa16 70
27a2a371
JW
71### Let's recognize common machines as not being operating systems so
72### that things like config.sub decstation-3100 work. We also
6559fbdb 73### recognize some manufacturers as not being operating systems, so we
27a2a371 74### can provide default operating systems below.
a2ee3e6d 75case $os in
939d9e8a
JL
76 -sun*os*)
77 # Prevent following clause from handling this invalid input.
78 ;;
a2ee3e6d
JW
79 -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \
80 -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \
1983e432 81 -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \
939d9e8a 82 -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
a2ee3e6d 83 -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
032d50a9
DE
84 -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp )
85 os=
86 basic_machine=$1
87 ;;
3b61a094 88 -sim | -cisco | -oki | -wec | -winbond ) # CYGNUS LOCAL
a2ee3e6d
JW
89 os=
90 basic_machine=$1
91 ;;
35262713 92 -apple*) # CYGNUS LOCAL
032d50a9
DE
93 os=
94 basic_machine=$1
95 ;;
378fd382 96 -scout) # CYGNUS LOCAL
f68be6f0 97 ;;
6559fbdb 98 -wrs) # CYGNUS LOCAL
300f6a4f
RS
99 os=vxworks
100 basic_machine=$1
101 ;;
939d9e8a 102 -hiux*)
aa6db781 103 os=-hiuxwe2
939d9e8a 104 ;;
d586f394
ILT
105 -sco5)
106 os=sco3.2v5
107 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
108 ;;
939d9e8a
JL
109 -sco4)
110 os=-sco3.2v4
111 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
112 ;;
113 -sco3.2.[4-9]*)
114 os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
115 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
116 ;;
27a2a371
JW
117 -sco3.2v[4-9]*)
118 # Don't forget version if it is 3.2v4 or newer.
6559fbdb 119 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
27a2a371 120 ;;
a2ee3e6d 121 -sco*)
378fd382 122 os=-sco3.2v2
6559fbdb 123 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
a2ee3e6d 124 ;;
27a2a371
JW
125 -isc)
126 os=-isc2.2
6559fbdb 127 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
27a2a371 128 ;;
9d784b19
RS
129 -clix*)
130 basic_machine=clipper-intergraph
131 ;;
378fd382 132 -isc*)
6559fbdb 133 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
a2ee3e6d 134 ;;
032d50a9 135 -lynx*)
939d9e8a
JL
136 os=-lynxos
137 ;;
d1c8b869
ILT
138 -ptx*)
139 basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`
aa6db781 140 ;;
d94aca1a
MT
141 -windowsnt*)
142 os=`echo $os | sed -e 's/windowsnt/winnt/'`
143 ;;
3f5d1c2c
C
144 -psos*)
145 os=-psos
146 ;;
a2ee3e6d 147esac
b9fe720d 148
a2ee3e6d
JW
149# Decode aliases for certain CPU-COMPANY combinations.
150case $basic_machine in
939d9e8a 151 # Recognize the basic CPU types without company name.
378fd382 152 # Some are omitted here because they have special meanings below.
d586f394
ILT
153 tahoe | i[3456]86 | i860 | m68k | m68000 | m88k | ns32k | arm \
154 | arme[lb] | pyramid \
d1c8b869 155 | tron | a29k | 580 | i960 | h8300 | hppa1.0 | hppa1.1 \
3f5d1c2c
C
156 | alpha | we32k | ns16k | clipper | i370 | sh \
157 | powerpc | powerpcle | 1750a | dsp16xx | mips64 | mipsel \
84849c9c 158 | pdp11 | mips64el | mips64orion | mips64orionel \
3f5d1c2c 159 | sparc | sparclet | sparclite | sparc64)
032d50a9
DE
160 basic_machine=$basic_machine-unknown
161 ;;
35262713 162 m88110 | m680[01234]0 | m683?2 | m68360 | z8k | v70 | h8500 | w65) # CYGNUS LOCAL
a2ee3e6d
JW
163 basic_machine=$basic_machine-unknown
164 ;;
d586f394
ILT
165 mips64vr4300 | mips64vr4300el) # CYGNUS LOCAL jsmith/vr4300
166 basic_machine=$basic_machine-unknown
167 ;;
168 mips64vr4100 | mips64vr4100el) # CYGNUS LOCAL jsmith/vr4100
48ac1853
ILT
169 basic_machine=$basic_machine-unknown
170 ;;
88632436 171# start-sanitize-v850
3f5d1c2c
C
172 v850) # CYGNUS LOCAL jtc/v850
173 basic_machine=$basic_machine-unknown
174 ;;
88632436 175# end-sanitize-v850
3f5d1c2c
C
176# start-sanitize-d10v
177 d10v) # CYGNUS LOCAL meissner/d10v
178 basic_machine=$basic_machine-unknown
179 ;;
180# end-sanitize-d10v
88632436
DE
181# start-sanitize-m32r
182 m32r)
183 basic_machine=$basic_machine-unknown
184 ;;
185# end-sanitize-m32r
939d9e8a
JL
186 # Object if more than one company name word.
187 *-*-*)
188 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
189 exit 1
190 ;;
191 # Recognize the basic CPU types with company name.
d586f394 192 vax-* | tahoe-* | i[3456]86-* | i860-* | m68k-* | m68000-* | m88k-* \
35262713
SC
193 | sparc-* | ns32k-* | fx80-* | arm-* | arme[lb]-* | c[123]* \
194 | mips-* | pyramid-* | tron-* | a29k-* | romp-* | rs6000-* | power-* \
d1c8b869 195 | none-* | 580-* | cray2-* | h8300-* | i960-* | xmp-* | ymp-* \
27a2a371 196 | hppa1.0-* | hppa1.1-* | alpha-* | we32k-* | cydra-* | ns16k-* \
6559fbdb 197 | pn-* | np1-* | xps100-* | clipper-* | orion-* | sparclite-* \
35262713 198 | pdp11-* | sh-* | powerpc-* | powerpcle-* | sparc64-* | mips64-* | mipsel-* \
032d50a9 199 | mips64el-* | mips64orion-* | mips64orionel-*)
a2ee3e6d 200 ;;
35262713 201 m88110-* | m680[01234]0-* | m683?2-* | m68360-* | z8k-* | h8500-*) # CYGNUS LOCAL
7c71fc39 202 ;;
d586f394
ILT
203 mips64vr4300-* | mips64vr4300el-*) # CYGNUS LOCAL jsmith/vr4300
204 ;;
205 mips64vr4100-* | mips64vr4100el-*) # CYGNUS LOCAL jsmith/vr4100
48ac1853 206 ;;
a2ee3e6d
JW
207 # Recognize the various machine names and aliases which stand
208 # for a CPU type and a company and sometimes even an OS.
842ca181
PB
209 386bsd) # CYGNUS LOCAL
210 basic_machine=i386-unknown
211 os=-bsd
a2ee3e6d 212 ;;
842ca181
PB
213 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
214 basic_machine=m68000-att
a2ee3e6d 215 ;;
842ca181
PB
216 3b*)
217 basic_machine=we32k-att
939d9e8a 218 ;;
842ca181
PB
219 a29khif) # CYGNUS LOCAL
220 basic_machine=a29k-amd
221 os=-udi
939d9e8a 222 ;;
842ca181
PB
223 adobe68k) # CYGNUS LOCAL
224 basic_machine=m68010-adobe
225 os=-scout
ba7f177a 226 ;;
842ca181
PB
227 alliant | fx80)
228 basic_machine=fx80-alliant
939d9e8a 229 ;;
842ca181
PB
230 altos | altos3068)
231 basic_machine=m68k-altos
a2ee3e6d 232 ;;
842ca181
PB
233 am29k)
234 basic_machine=a29k-none
235 os=-bsd
a2ee3e6d 236 ;;
842ca181
PB
237 amdahl)
238 basic_machine=580-amdahl
239 os=-sysv
939d9e8a 240 ;;
d1c8b869 241 amiga | amiga-*)
842ca181 242 basic_machine=m68k-cbm
68cd7865 243 ;;
842ca181
PB
244 amigados)
245 basic_machine=m68k-cbm
246 os=-amigados
a2ee3e6d 247 ;;
842ca181
PB
248 amigaunix | amix)
249 basic_machine=m68k-cbm
6559fbdb
RP
250 os=-sysv4
251 ;;
842ca181
PB
252 apollo68)
253 basic_machine=m68k-apollo
6559fbdb
RP
254 os=-sysv
255 ;;
842ca181
PB
256 apollo68bsd) # CYGNUS LOCAL
257 basic_machine=m68k-apollo
23ab00aa
KR
258 os=-bsd
259 ;;
35262713 260 arm | armel | armeb)
48ac1853 261 basic_machine=arm-arm
35262713
SC
262 os=-aout
263 ;;
032d50a9
DE
264# start-sanitize-arc
265 arc)
266 basic_machine=arc-unknown
267 ;;
268 arc-*)
269 ;;
270# end-sanitize-arc
349f03db
ILT
271 aux)
272 basic_machine=m68k-apple
273 os=-aux
274 ;;
842ca181
PB
275 balance)
276 basic_machine=ns32k-sequent
277 os=-dynix
939d9e8a 278 ;;
a2ee3e6d
JW
279 convex-c1)
280 basic_machine=c1-convex
378fd382 281 os=-bsd
a2ee3e6d
JW
282 ;;
283 convex-c2)
284 basic_machine=c2-convex
378fd382 285 os=-bsd
a2ee3e6d
JW
286 ;;
287 convex-c32)
288 basic_machine=c32-convex
378fd382 289 os=-bsd
a2ee3e6d
JW
290 ;;
291 convex-c34)
292 basic_machine=c34-convex
378fd382 293 os=-bsd
a2ee3e6d
JW
294 ;;
295 convex-c38)
296 basic_machine=c38-convex
378fd382 297 os=-bsd
a2ee3e6d 298 ;;
842ca181
PB
299 cray | ymp)
300 basic_machine=ymp-cray
301 os=-unicos
a2ee3e6d 302 ;;
842ca181
PB
303 cray2)
304 basic_machine=cray2-cray
305 os=-unicos
a2ee3e6d
JW
306 ;;
307 crds | unos)
308 basic_machine=m68k-crds
309 ;;
d1c8b869
ILT
310 da30 | da30-*)
311 basic_machine=m68k-da30
312 ;;
313 decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn)
842ca181
PB
314 basic_machine=mips-dec
315 ;;
316 delta | 3300 | motorola-3300 | motorola-delta \
317 | 3300-motorola | delta-motorola)
318 basic_machine=m68k-motorola
319 ;;
320 delta88)
321 basic_machine=m88k-motorola
322 os=-sysv3
323 ;;
324 dpx20 | dpx20-*)
325 basic_machine=rs6000-bull
326 os=-bosx
327 ;;
328 dpx2* | dpx2*-bull)
329 basic_machine=m68k-bull
330 os=-sysv3
331 ;;
332 ebmon29k)
333 basic_machine=a29k-amd
334 os=-ebmon
335 ;;
378fd382
DZ
336 elxsi)
337 basic_machine=elxsi-elxsi
338 os=-bsd
339 ;;
a2ee3e6d
JW
340 encore | umax | mmax)
341 basic_machine=ns32k-encore
a2ee3e6d 342 ;;
842ca181
PB
343 es1800 | OSE68k | ose68k | ose | OSE) # CYGNUS LOCAL
344 basic_machine=m68k-ericsson
345 os=-ose
346 ;;
347 fx2800)
348 basic_machine=i860-alliant
349 ;;
a2ee3e6d
JW
350 genix)
351 basic_machine=ns32k-ns
352 ;;
842ca181
PB
353 gmicro)
354 basic_machine=tron-gmicro
355 os=-sysv
a2ee3e6d 356 ;;
842ca181
PB
357 h3050r* | hiux*)
358 basic_machine=hppa1.1-hitachi
359 os=-hiuxwe2
a2ee3e6d 360 ;;
d94aca1a 361 h8300hms)
842ca181
PB
362 basic_machine=h8300-hitachi
363 os=-hms
a2ee3e6d 364 ;;
842ca181
PB
365 h8300xray) # CYGNUS LOCAL
366 basic_machine=h8300-hitachi
367 os=-xray
a2ee3e6d 368 ;;
842ca181
PB
369 h8500hms) # CYGNUS LOCAL
370 basic_machine=h8500-hitachi
371 os=-hms
a2ee3e6d 372 ;;
842ca181
PB
373 harris)
374 basic_machine=m88k-harris
375 os=-sysv3
a2ee3e6d 376 ;;
d1c8b869
ILT
377 hp300-*)
378 basic_machine=m68k-hp
a2ee3e6d 379 ;;
842ca181
PB
380 hp300bsd)
381 basic_machine=m68k-hp
382 os=-bsd
a2ee3e6d 383 ;;
842ca181
PB
384 hp300hpux)
385 basic_machine=m68k-hp
386 os=-hpux
a2ee3e6d 387 ;;
d1c8b869
ILT
388 w89k-*) # CYGNUS LOCAL
389 basic_machine=hppa1.1-winbond
390 os=-proelf
391 ;;
392 op50n-*) # CYGNUS LOCAL
393 basic_machine=hppa1.1-oki
394 os=-proelf
395 ;;
396 op60c-*) # CYGNUS LOCAL
397 basic_machine=hppa1.1-oki
398 os=-proelf
399 ;;
400 hppro) # CYGNUS LOCAL
401 basic_machine=hppa1.1-hp
402 os=-proelf
403 ;;
842ca181
PB
404 hp9k2[0-9][0-9] | hp9k31[0-9])
405 basic_machine=m68000-hp
a2ee3e6d 406 ;;
842ca181
PB
407 hp9k3[2-9][0-9])
408 basic_machine=m68k-hp
a2ee3e6d 409 ;;
842ca181
PB
410 hp9k7[0-9][0-9] | hp7[0-9][0-9] | hp9k8[0-9]7 | hp8[0-9]7)
411 basic_machine=hppa1.1-hp
a2ee3e6d 412 ;;
842ca181
PB
413 hp9k8[0-9][0-9] | hp8[0-9][0-9])
414 basic_machine=hppa1.0-hp
a2ee3e6d 415 ;;
d94aca1a 416 hppaosf) # CYGNUS LOCAL
842ca181
PB
417 basic_machine=hppa1.1-hp
418 os=-osf
419 ;;
420 i370-ibm* | ibm*)
421 basic_machine=i370-ibm
422 os=-mvs
423 ;;
842ca181 424# I'm not sure what "Sysv32" means. Should this be sysv3.2?
d586f394 425 i[3456]86v32)
842ca181
PB
426 basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'`
427 os=-sysv32
428 ;;
d586f394 429 i[3456]86v4*)
842ca181
PB
430 basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'`
431 os=-sysv4
432 ;;
d586f394 433 i[3456]86v)
842ca181
PB
434 basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'`
435 os=-sysv
436 ;;
d586f394 437 i[3456]86sol2)
842ca181 438 basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'`
8bcd7db2
JW
439 os=-solaris2
440 ;;
d1c8b869
ILT
441 i386mach) # CYGNUS LOCAL
442 basic_machine=i386-mach
443 os=-mach
444 ;;
445 i386-vsta | vsta) # CYGNUS LOCAL
446 basic_machine=i386-unknown
447 os=-vsta
448 ;;
449 i386-go32 | go32) # CYGNUS LOCAL
450 basic_machine=i386-unknown
451 os=-go32
452 ;;
84849c9c 453 iris | iris4d)
842ca181
PB
454 basic_machine=mips-sgi
455 case $os in
456 -irix*)
457 ;;
458 *)
459 os=-irix4
460 ;;
461 esac
462 ;;
463 isi68 | isi)
464 basic_machine=m68k-isi
465 os=-sysv
466 ;;
842ca181
PB
467 m88k-omron*)
468 basic_machine=m88k-omron
469 ;;
470 magnum | m3230)
471 basic_machine=mips-mips
472 os=-sysv
473 ;;
474 merlin)
475 basic_machine=ns32k-utek
476 os=-sysv
477 ;;
478 miniframe)
d1c8b869 479 basic_machine=m68000-convergent
a2ee3e6d 480 ;;
d1c8b869 481 mips3*-*)
842ca181
PB
482 basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
483 ;;
d1c8b869
ILT
484 mips3*)
485 basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
842ca181 486 ;;
d94aca1a 487 monitor) # CYGNUS LOCAL
d1c8b869 488 basic_machine=m68k-rom68k
842ca181 489 os=-coff
d1c8b869 490 ;;
378fd382 491 msdos) # CYGNUS LOCAL
afba2b22
ILT
492 basic_machine=i386-unknown
493 os=-msdos
494 ;;
842ca181
PB
495 ncr3000)
496 basic_machine=i486-ncr
497 os=-sysv4
378fd382 498 ;;
842ca181
PB
499 netbsd386)
500 basic_machine=i386-unknown # CYGNUS LOCAL
501 os=-netbsd
a2ee3e6d 502 ;;
842ca181
PB
503 news | news700 | news800 | news900)
504 basic_machine=m68k-sony
505 os=-newsos
a2ee3e6d 506 ;;
842ca181
PB
507 news1000)
508 basic_machine=m68030-sony
509 os=-newsos
510 ;;
511 news-3600 | risc-news)
512 basic_machine=mips-sony
513 os=-newsos
378fd382 514 ;;
d1c8b869
ILT
515 necv70) # CYGNUS LOCAL
516 basic_machine=v70-nec
517 os=-sysv
518 ;;
519 next | m*-next )
a2ee3e6d 520 basic_machine=m68k-next
842ca181 521 case $os in
d1c8b869
ILT
522 -nextstep* )
523 ;;
524 -ns2*)
525 os=-nextstep2
842ca181
PB
526 ;;
527 *)
1983e432 528 os=-nextstep3
842ca181
PB
529 ;;
530 esac
a2ee3e6d 531 ;;
842ca181
PB
532 nh3000)
533 basic_machine=m68k-harris
534 os=-cxux
378fd382 535 ;;
842ca181
PB
536 nh[45]000)
537 basic_machine=m88k-harris
538 os=-cxux
27a2a371 539 ;;
842ca181
PB
540 nindy960)
541 basic_machine=i960-intel
542 os=-nindy
a2ee3e6d 543 ;;
3f5d1c2c
C
544 mon960)
545 basic_machine=i960-intel
546 os=-mon960
547 ;;
842ca181
PB
548 np1)
549 basic_machine=np1-gould
a2ee3e6d 550 ;;
842ca181
PB
551 OSE68000 | ose68000) # CYGNUS LOCAL
552 basic_machine=m68000-ericsson
553 os=-ose
a2ee3e6d 554 ;;
d1c8b869
ILT
555 os68k) # CYGNUS LOCAL
556 basic_machine=m68k-none
557 os=-os68k
558 ;;
842ca181 559 pa-hitachi)
9117f609 560 basic_machine=hppa1.1-hitachi
842ca181 561 os=-hiuxwe2
9117f609 562 ;;
842ca181
PB
563 paragon)
564 basic_machine=i860-intel
565 os=-osf
a2ee3e6d 566 ;;
842ca181
PB
567 pbd)
568 basic_machine=sparc-tti
a2ee3e6d 569 ;;
842ca181
PB
570 pbb)
571 basic_machine=m68k-tti
a2ee3e6d 572 ;;
d1c8b869 573 pc532 | pc532-*)
842ca181 574 basic_machine=ns32k-pc532
a2ee3e6d 575 ;;
d586f394 576 pentium | p5)
35262713
SC
577 basic_machine=i586-intel
578 ;;
d586f394
ILT
579 pentiumpro | p6)
580 basic_machine=i686-intel
581 ;;
582 pentium-* | p5-*)
35262713
SC
583 basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`
584 ;;
d586f394
ILT
585 pentiumpro-* | p6-*)
586 basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
587 ;;
35262713
SC
588 k5)
589 # We don't have specific support for AMD's K5 yet, so just call it a Pentium
590 basic_machine=i586-amd
591 ;;
d586f394 592 nexen)
35262713
SC
593 # We don't have specific support for Nexgen yet, so just call it a Pentium
594 basic_machine=i586-nexgen
d1c8b869 595 ;;
842ca181
PB
596 pn)
597 basic_machine=pn-gould
598 ;;
35262713
SC
599 power) basic_machine=rs6000-ibm
600 ;;
601 ppc) basic_machine=powerpc-unknown
602 ;;
603 ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
604 ;;
605 ppcle | powerpclittle | ppc-le | powerpc-little)
606 basic_machine=powerpcle-unknown
607 ;;
608 ppcle-* | powerpclittle-*)
609 basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'`
610 ;;
842ca181
PB
611 ps2)
612 basic_machine=i386-ibm
68cd7865 613 ;;
d1c8b869
ILT
614 rom68k) # CYGNUS LOCAL
615 basic_machine=m68k-rom68k
9d784b19 616 os=-coff
d1c8b869 617 ;;
84849c9c
ILT
618 rm[46]00)
619 basic_machine=mips-siemens
620 ;;
842ca181
PB
621 rtpc | rtpc-*)
622 basic_machine=romp-ibm
a2ee3e6d 623 ;;
842ca181
PB
624 sa29200) # CYGNUS LOCAL
625 basic_machine=a29k-amd
626 os=-udi
a2ee3e6d 627 ;;
d1c8b869
ILT
628 sequent)
629 basic_machine=i386-sequent
630 ;;
631 sh)
842ca181
PB
632 basic_machine=sh-hitachi
633 os=-hms
a2ee3e6d 634 ;;
842ca181
PB
635 sparclite-wrs) # CYGNUS LOCAL
636 basic_machine=sparclite-wrs
637 os=-vxworks
638 ;;
842ca181
PB
639 sps7)
640 basic_machine=m68k-bull
641 os=-sysv2
642 ;;
643 spur)
644 basic_machine=spur-unknown
645 ;;
646 st2000) # CYGNUS LOCAL
647 basic_machine=m68k-tandem
a2ee3e6d 648 ;;
378fd382 649 stratus) # CYGNUS LOCAL
dd16baba
SEF
650 basic_machine=i860-stratus
651 os=-sysv4
652 ;;
842ca181
PB
653 sun2)
654 basic_machine=m68000-sun
a2ee3e6d 655 ;;
842ca181
PB
656 sun2os3)
657 basic_machine=m68000-sun
658 os=-sunos3
a2ee3e6d 659 ;;
842ca181
PB
660 sun2os4)
661 basic_machine=m68000-sun
662 os=-sunos4
a2ee3e6d 663 ;;
842ca181
PB
664 sun3os3)
665 basic_machine=m68k-sun
666 os=-sunos3
a2ee3e6d 667 ;;
842ca181
PB
668 sun3os4)
669 basic_machine=m68k-sun
670 os=-sunos4
a2ee3e6d 671 ;;
842ca181
PB
672 sun4os3)
673 basic_machine=sparc-sun
674 os=-sunos3
a2ee3e6d 675 ;;
842ca181
PB
676 sun4os4)
677 basic_machine=sparc-sun
678 os=-sunos4
2501643a 679 ;;
84849c9c 680 sun4sol2)
842ca181
PB
681 basic_machine=sparc-sun
682 os=-solaris2
984b27cb 683 ;;
d1c8b869 684 sun3 | sun3-*)
842ca181 685 basic_machine=m68k-sun
984b27cb 686 ;;
842ca181
PB
687 sun4)
688 basic_machine=sparc-sun
378fd382 689 ;;
842ca181
PB
690 sun386 | sun386i | roadrunner)
691 basic_machine=i386-sun
378fd382 692 ;;
842ca181
PB
693 symmetry)
694 basic_machine=i386-sequent
695 os=-dynix
2501643a 696 ;;
842ca181
PB
697 tower | tower-32)
698 basic_machine=m68k-ncr
2501643a 699 ;;
032d50a9 700 udi29k)
2501643a
PB
701 basic_machine=a29k-amd
702 os=-udi
703 ;;
842ca181
PB
704 ultra3)
705 basic_machine=a29k-nyu
706 os=-sym1
99a5da15 707 ;;
d94aca1a 708 v810 | necv810) # CYGNUS LOCAL
4a967132
PB
709 basic_machine=v810-nec
710 os=-none
711 ;;
842ca181
PB
712 vaxv)
713 basic_machine=vax-dec
714 os=-sysv
a2ee3e6d 715 ;;
842ca181
PB
716 vms)
717 basic_machine=vax-dec
718 os=-vms
a2ee3e6d
JW
719 ;;
720 vxworks960)
721 basic_machine=i960-wrs
722 os=-vxworks
723 ;;
724 vxworks68)
725 basic_machine=m68k-wrs
726 os=-vxworks
727 ;;
d586f394
ILT
728 vxworks29k)
729 basic_machine=a29k-wrs
730 os=-vxworks
731 ;;
84849c9c 732 w65*) # CYGNUS LOCAL
032d50a9
DE
733 basic_machine=w65-wdc
734 os=-none
735 ;;
842ca181
PB
736 xmp)
737 basic_machine=xmp-cray
738 os=-unicos
f68be6f0 739 ;;
27a2a371
JW
740 xps | xps100)
741 basic_machine=xps100-honeywell
742 ;;
48ac1853 743 z8k-*-coff) # CYGNUS LOCAL
d1c8b869 744 basic_machine=z8k-unknown
842ca181
PB
745 os=-sim
746 ;;
a2ee3e6d
JW
747 none)
748 basic_machine=none-none
749 os=-none
750 ;;
69e87de2 751
a2ee3e6d
JW
752# Here we handle the default manufacturer of certain CPU types. It is in
753# some cases the only manufacturer, in others, it is the most popular.
d1c8b869 754 w89k) # CYGNUS LOCAL
3b61a094
RS
755 basic_machine=hppa1.1-winbond
756 ;;
d1c8b869 757 op50n) # CYGNUS LOCAL
3b61a094
RS
758 basic_machine=hppa1.1-oki
759 ;;
d1c8b869 760 op60c) # CYGNUS LOCAL
3b61a094
RS
761 basic_machine=hppa1.1-oki
762 ;;
a2ee3e6d
JW
763 mips)
764 basic_machine=mips-mips
765 ;;
766 romp)
767 basic_machine=romp-ibm
768 ;;
769 rs6000)
770 basic_machine=rs6000-ibm
771 ;;
772 vax)
773 basic_machine=vax-dec
774 ;;
84849c9c
ILT
775 pdp11)
776 basic_machine=pdp11-dec
777 ;;
378fd382
DZ
778 we32k)
779 basic_machine=we32k-att
780 ;;
6559fbdb
RP
781 sparc)
782 basic_machine=sparc-sun
783 ;;
27a2a371
JW
784 cydra)
785 basic_machine=cydra-cydrome
786 ;;
787 orion)
788 basic_machine=orion-highlevel
789 ;;
790 orion105)
791 basic_machine=clipper-highlevel
792 ;;
48ac1853 793 mac | mpw | mac-mpw) # CYGNUS LOCAL
939d9e8a
JL
794 basic_machine=m68k-apple
795 ;;
48ac1853
ILT
796 pmac | pmac-mpw) # CYGNUS LOCAL
797 basic_machine=powerpc-apple
939d9e8a 798 ;;
a2ee3e6d
JW
799 *)
800 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
4f183929 801 exit 1
a2ee3e6d 802 ;;
4f183929
RP
803esac
804
378fd382
DZ
805# Here we canonicalize certain aliases for manufacturers.
806case $basic_machine in
807 *-digital*)
808 basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
809 ;;
810 *-commodore*)
811 basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
812 ;;
813 *)
814 ;;
815esac
816
a2ee3e6d 817# Decode manufacturer-specific aliases for certain operating systems.
e6602723 818
b48eb8b7 819if [ x"$os" != x"" ]
a2ee3e6d
JW
820then
821case $os in
6559fbdb
RP
822 # -solaris* is a basic system type, with this one exception.
823 -solaris1 | -solaris1.*)
824 os=`echo $os | sed -e 's|solaris1|sunos4|'`
825 ;;
b2eed00f
DE
826 -solaris)
827 os=-solaris2
828 ;;
84849c9c
ILT
829 -unixware* | svr4*)
830 os=-sysv4
831 ;;
d94aca1a
MT
832 -gnu/linux*)
833 os=`echo $os | sed -e 's|gnu/linux|linux|'`
834 ;;
a2ee3e6d
JW
835 # First accept the basic system types.
836 # The portable systems comes first.
d586f394 837 # Each alternative MUST END IN A *, to match a version number.
939d9e8a 838 # -sysv* is not here because it comes later, after sysvr4.
d586f394 839 -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
3f5d1c2c 840 | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[3456]* \
d1c8b869 841 | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \
3f5d1c2c
C
842 | -amigados* | -msdos* | -moss* | -newsos* | -unicos* | -aos* | -aof* \
843 | -nindy* | -mon960* | -vxworks* | -ebmon* | -hms* | -mvs* | -clix* \
27a2a371 844 | -riscos* | -linux* | -uniplus* | -iris* | -rtu* | -xenix* \
d586f394 845 | -hiux* | -386bsd* | -netbsd* | -freebsd* | -riscix* \
d1c8b869 846 | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* \
d586f394 847 | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
3f5d1c2c
C
848 | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
849 | -cygwin32* | -pe* | -psos*)
d586f394 850 # Remember, each alternative MUST END IN *, to match a version number.
d1c8b869 851 ;;
032d50a9 852 # CYGNUS LOCAL
d586f394 853 -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \
48ac1853 854 | -windows* | -osx | -abug | -netware* | -proelf | -os9* \
3f5d1c2c 855 | -macos* | -mpw* | -magic* | -rtems*)
032d50a9 856 ;;
d586f394 857 -mac*)
032d50a9
DE
858 os=`echo $os | sed -e 's|mac|macos|'`
859 ;;
d586f394 860 # END CYGNUS LOCAL
6559fbdb
RP
861 -sunos5*)
862 os=`echo $os | sed -e 's|sunos5|solaris2|'`
863 ;;
864 -sunos6*)
865 os=`echo $os | sed -e 's|sunos6|solaris3|'`
866 ;;
a2ee3e6d 867 -osfrose*)
378fd382 868 os=-osfrose
a2ee3e6d
JW
869 ;;
870 -osf*)
378fd382
DZ
871 os=-osf
872 ;;
873 -utek*)
a2ee3e6d
JW
874 os=-bsd
875 ;;
876 -dynix*)
877 os=-bsd
878 ;;
378fd382
DZ
879 -acis*)
880 os=-aos
a2ee3e6d 881 ;;
378fd382 882 -386bsd) # CYGNUS LOCAL
23ab00aa
KR
883 os=-bsd
884 ;;
68cd7865 885 -ctix* | -uts*)
a2ee3e6d
JW
886 os=-sysv
887 ;;
d586f394
ILT
888 -ns2 )
889 os=-nextstep2
890 ;;
84849c9c
ILT
891 # Preserve the version number of sinix5.
892 -sinix5.*)
893 os=`echo $os | sed -e 's|sinix|sysv|'`
894 ;;
895 -sinix*)
896 os=-sysv4
897 ;;
378fd382
DZ
898 -triton*)
899 os=-sysv3
900 ;;
901 -oss*)
902 os=-sysv3
903 ;;
c1e296fc
SG
904 -svr4)
905 os=-sysv4
906 ;;
907 -svr3)
908 os=-sysv3
909 ;;
939d9e8a
JL
910 -sysvr4)
911 os=-sysv4
912 ;;
913 # This must come after -sysvr4.
914 -sysv*)
915 ;;
378fd382 916 -ose*) # CYGNUS LOCAL
afba2b22
ILT
917 os=-ose
918 ;;
378fd382 919 -es1800*) # CYGNUS LOCAL
afba2b22
ILT
920 os=-ose
921 ;;
27a2a371
JW
922 -xenix)
923 os=-xenix
924 ;;
378fd382
DZ
925 -none)
926 ;;
a2ee3e6d
JW
927 *)
928 # Get rid of the `-' at the beginning of $os.
d1c8b869 929 os=`echo $os | sed 's/[^-]*-//'`
a2ee3e6d
JW
930 echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2
931 exit 1
932 ;;
69e87de2 933esac
a2ee3e6d 934else
69e87de2 935
a2ee3e6d
JW
936# Here we handle the default operating systems that come with various machines.
937# The value should be what the vendor currently ships out the door with their
938# machine or put another way, the most popular os provided with the machine.
27a2a371
JW
939
940# Note that if you're going to try to match "-MANUFACTURER" here (say,
941# "-sun"), then you have to tell the case statement up towards the top
942# that MANUFACTURER isn't an operating system. Otherwise, code above
943# will signal an error saying that MANUFACTURER isn't an operating
944# system, and we'll never get to this point.
945
a2ee3e6d 946case $basic_machine in
939d9e8a
JL
947 *-acorn)
948 os=-riscix1.2
949 ;;
d586f394
ILT
950 arm*-semi)
951 os=-aout
952 ;;
84849c9c
ILT
953 pdp11-*)
954 os=-none
955 ;;
a2ee3e6d 956 *-dec | vax-*)
378fd382 957 os=-ultrix4.2
a2ee3e6d 958 ;;
84849c9c
ILT
959 m68*-apollo)
960 os=-domain
961 ;;
a2ee3e6d 962 i386-sun)
378fd382 963 os=-sunos4.0.2
a2ee3e6d
JW
964 ;;
965 m68000-sun)
966 os=-sunos3
967 # This also exists in the configure program, but was not the
968 # default.
969 # os=-sunos4
970 ;;
d94aca1a 971 m68*-cisco) # CYGNUS LOCAL
aa6db781
DE
972 os=-aout
973 ;;
d94aca1a 974 mips*-cisco) # CYGNUS LOCAL
aa6db781
DE
975 os=-elf
976 ;;
378fd382
DZ
977 *-tti) # must be before sparc entry or we get the wrong os.
978 os=-sysv3
a2ee3e6d 979 ;;
378fd382
DZ
980 sparc-* | *-sun)
981 os=-sunos4.1.1
a2ee3e6d
JW
982 ;;
983 *-ibm)
984 os=-aix
985 ;;
3b61a094 986 *-wec) # CYGNUS LOCAL
d1c8b869 987 os=-proelf
3b61a094
RS
988 ;;
989 *-winbond) # CYGNUS LOCAL
d1c8b869 990 os=-proelf
3b61a094
RS
991 ;;
992 *-oki) # CYGNUS LOCAL
d1c8b869
ILT
993 os=-proelf
994 ;;
995 *-hp)
996 os=-hpux
3b61a094 997 ;;
9117f609
JK
998 *-hitachi)
999 os=-hiux
1000 ;;
27a2a371 1001 i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent)
a2ee3e6d
JW
1002 os=-sysv
1003 ;;
378fd382
DZ
1004 *-cbm)
1005 os=-amigados
1006 ;;
a2ee3e6d
JW
1007 *-dg)
1008 os=-dgux
1009 ;;
378fd382
DZ
1010 *-dolphin)
1011 os=-sysv3
1012 ;;
d1c8b869
ILT
1013 m68k-ccur)
1014 os=-rtu
1015 ;;
a2ee3e6d
JW
1016 m88k-omron*)
1017 os=-luna
1018 ;;
d586f394
ILT
1019 *-next )
1020 os=-nextstep
1021 ;;
a70c9959 1022 *-sequent)
d1c8b869 1023 os=-ptx
a70c9959 1024 ;;
a2ee3e6d
JW
1025 *-crds)
1026 os=-unos
1027 ;;
1028 *-ns)
1029 os=-genix
1030 ;;
939d9e8a
JL
1031 i370-*)
1032 os=-mvs
1033 ;;
1034 *-next)
d1c8b869 1035 os=-nextstep3
a2ee3e6d 1036 ;;
27a2a371
JW
1037 *-gould)
1038 os=-sysv
1039 ;;
1040 *-highlevel)
1041 os=-bsd
1042 ;;
1043 *-encore)
1044 os=-bsd
1045 ;;
1046 *-sgi)
1047 os=-irix
1048 ;;
84849c9c
ILT
1049 *-siemens)
1050 os=-sysv4
1051 ;;
27a2a371
JW
1052 *-masscomp)
1053 os=-rtu
1054 ;;
9d784b19
RS
1055 *-rom68k) # CYGNUS LOCAL
1056 os=-coff
1057 ;;
1058 *-*bug) # CYGNUS LOCAL
1059 os=-coff
1060 ;;
939d9e8a 1061 *-apple) # CYGNUS LOCAL
48ac1853 1062 os=-macos
939d9e8a 1063 ;;
a2ee3e6d
JW
1064 *)
1065 os=-none
1066 ;;
69e87de2 1067esac
a2ee3e6d 1068fi
69e87de2 1069
a2ee3e6d
JW
1070# Here we handle the case where we know the os, and the CPU type, but not the
1071# manufacturer. We pick the logical manufacturer.
1072vendor=unknown
1073case $basic_machine in
1074 *-unknown)
1075 case $os in
939d9e8a
JL
1076 -riscix*)
1077 vendor=acorn
1078 ;;
a2ee3e6d
JW
1079 -sunos*)
1080 vendor=sun
1081 ;;
84849c9c 1082 -bosx*) # CYGNUS LOCAL
ba7f177a
PB
1083 vendor=bull
1084 ;;
b2eed00f
DE
1085 -lynxos*)
1086 vendor=lynx
1087 ;;
a2ee3e6d
JW
1088 -aix*)
1089 vendor=ibm
1090 ;;
1091 -hpux*)
1092 vendor=hp
1093 ;;
9117f609
JK
1094 -hiux*)
1095 vendor=hitachi
1096 ;;
a2ee3e6d
JW
1097 -unos*)
1098 vendor=crds
1099 ;;
1100 -dgux*)
1101 vendor=dg
1102 ;;
1103 -luna*)
1104 vendor=omron
1105 ;;
1106 -genix*)
1107 vendor=ns
1108 ;;
939d9e8a
JL
1109 -mvs*)
1110 vendor=ibm
1111 ;;
d1c8b869
ILT
1112 -ptx*)
1113 vendor=sequent
1114 ;;
939d9e8a 1115 -vxworks*)
032d50a9 1116 vendor=wrs
afba2b22 1117 ;;
349f03db
ILT
1118 -aux*)
1119 vendor=apple
1120 ;;
984b27cb
SC
1121 -hms*) # CYGNUS LOCAL
1122 vendor=hitachi
1123 ;;
35262713 1124 -mpw* | -macos*) # CYGNUS LOCAL
939d9e8a
JL
1125 vendor=apple
1126 ;;
a2ee3e6d
JW
1127 esac
1128 basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
1129 ;;
4f183929
RP
1130esac
1131
a2ee3e6d 1132echo $basic_machine$os