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