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