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