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