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