]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - config.sub
* ld-srec/srec.exp: Add xfails for bfin-*-linux-uclibc.
[thirdparty/binutils-gdb.git] / config.sub
CommitLineData
252b5132 1#! /bin/sh
35590697 2# Configuration validation subroutine script.
b020f6ac 3# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
7ee5dbeb 4# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
9f1e7fd3 5# Free Software Foundation, Inc.
ac73857d 6
2262bbf4 7timestamp='2009-08-17'
ac73857d 8
252b5132
RH
9# This file is (in principle) common to ALL GNU software.
10# The presence of a machine in this file suggests that SOME GNU software
11# can handle that machine. It does not imply ALL GNU software can.
12#
13# This file is free software; you can redistribute it and/or modify
14# it under the terms of the GNU General Public License as published by
15# the Free Software Foundation; either version 2 of the License, or
16# (at your option) any later version.
17#
18# This program is distributed in the hope that it will be useful,
19# but WITHOUT ANY WARRANTY; without even the implied warranty of
20# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21# GNU General Public License for more details.
22#
23# You should have received a copy of the GNU General Public License
24# along with this program; if not, write to the Free Software
1d9c9cd7
KC
25# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
26# 02110-1301, USA.
27#
252b5132
RH
28# As a special exception to the GNU General Public License, if you
29# distribute this file as part of a program that contains a
30# configuration script generated by Autoconf, you may include it under
31# the same distribution terms that you use for the rest of that program.
32
1d9c9cd7 33
26ef82f4
GK
34# Please send patches to <config-patches@gnu.org>. Submit a context
35# diff and a properly formatted ChangeLog entry.
ada59422 36#
252b5132
RH
37# Configuration subroutine to validate and canonicalize a configuration type.
38# Supply the specified configuration type as an argument.
39# If it is invalid, we print an error message on stderr and exit with code 1.
40# Otherwise, we print the canonical config type on stdout and succeed.
41
42# This file is supposed to be the same for all GNU packages
43# and recognize all the CPU types, system types and aliases
44# that are meaningful with *any* GNU software.
45# Each package is responsible for reporting which valid configurations
46# it does not support. The user should be able to distinguish
47# a failure to support a valid configuration from a meaningless
48# configuration.
49
50# The goal of this file is to map all the various variations of a given
51# machine specification into a single specification in the form:
52# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
53# or in some cases, the newer four-part form:
54# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
55# It is wrong to echo any other type of specification.
56
ac73857d 57me=`echo "$0" | sed -e 's,.*/,,'`
252b5132 58
ac73857d
AC
59usage="\
60Usage: $0 [OPTION] CPU-MFR-OPSYS
61 $0 [OPTION] ALIAS
62
63Canonicalize a configuration name.
64
65Operation modes:
35590697
AJ
66 -h, --help print this help, then exit
67 -t, --time-stamp print date of last modification, then exit
68 -v, --version print version number, then exit
69
70Report bugs and patches to <config-patches@gnu.org>."
71
72version="\
73GNU config.sub ($timestamp)
74
9f1e7fd3
BE
75Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
762002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
35590697
AJ
77
78This is free software; see the source for copying conditions. There is NO
79warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
ac73857d
AC
80
81help="
82Try \`$me --help' for more information."
83
84# Parse command line
85while test $# -gt 0 ; do
35590697
AJ
86 case $1 in
87 --time-stamp | --time* | -t )
1d9c9cd7 88 echo "$timestamp" ; exit ;;
35590697 89 --version | -v )
1d9c9cd7 90 echo "$version" ; exit ;;
ac73857d 91 --help | --h* | -h )
1d9c9cd7 92 echo "$usage"; exit ;;
ac73857d
AC
93 -- ) # Stop option processing
94 shift; break ;;
95 - ) # Use stdin as input.
96 break ;;
97 -* )
35590697 98 echo "$me: invalid option $1$help"
ac73857d
AC
99 exit 1 ;;
100
101 *local*)
102 # First pass through any local machine types.
103 echo $1
1d9c9cd7 104 exit ;;
ac73857d
AC
105
106 * )
107 break ;;
108 esac
109done
110
111case $# in
112 0) echo "$me: missing argument$help" >&2
113 exit 1;;
114 1) ;;
115 *) echo "$me: too many arguments$help" >&2
116 exit 1;;
252b5132
RH
117esac
118
252b5132
RH
119# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
120# Here we must recognize all the valid KERNEL-OS combinations.
121maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
122case $maybe_os in
ec49b2b8
NC
123 nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \
124 uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \
0000e2bf 125 kopensolaris*-gnu* | \
ec49b2b8 126 storm-chaos* | os2-emx* | rtmk-nova*)
252b5132
RH
127 os=-$maybe_os
128 basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
129 ;;
130 *)
131 basic_machine=`echo $1 | sed 's/-[^-]*$//'`
132 if [ $basic_machine != $1 ]
133 then os=`echo $1 | sed 's/.*-/-/'`
134 else os=; fi
135 ;;
136esac
137
138### Let's recognize common machines as not being operating systems so
139### that things like config.sub decstation-3100 work. We also
140### recognize some manufacturers as not being operating systems, so we
141### can provide default operating systems below.
142case $os in
143 -sun*os*)
144 # Prevent following clause from handling this invalid input.
145 ;;
146 -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \
147 -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \
148 -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \
149 -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
150 -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
151 -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
2262bbf4 152 -apple | -axis | -knuth | -cray | -microblaze)
252b5132
RH
153 os=
154 basic_machine=$1
155 ;;
2262bbf4
BE
156 -bluegene*)
157 os=-cnk
158 ;;
6c3175b0 159 -sim | -cisco | -oki | -wec | -winbond)
252b5132
RH
160 os=
161 basic_machine=$1
162 ;;
6c3175b0 163 -scout)
252b5132 164 ;;
6c3175b0 165 -wrs)
ada59422 166 os=-vxworks
252b5132
RH
167 basic_machine=$1
168 ;;
82208dc5
AM
169 -chorusos*)
170 os=-chorusos
171 basic_machine=$1
172 ;;
173 -chorusrdb)
174 os=-chorusrdb
175 basic_machine=$1
176 ;;
252b5132
RH
177 -hiux*)
178 os=-hiuxwe2
179 ;;
be01d343
PB
180 -sco6)
181 os=-sco5v6
182 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
183 ;;
252b5132
RH
184 -sco5)
185 os=-sco3.2v5
186 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
187 ;;
188 -sco4)
189 os=-sco3.2v4
190 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
191 ;;
192 -sco3.2.[4-9]*)
193 os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
194 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
195 ;;
196 -sco3.2v[4-9]*)
197 # Don't forget version if it is 3.2v4 or newer.
198 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
199 ;;
be01d343
PB
200 -sco5v6*)
201 # Don't forget version if it is 3.2v4 or newer.
202 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
203 ;;
252b5132
RH
204 -sco*)
205 os=-sco3.2v2
206 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
207 ;;
208 -udk*)
209 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
210 ;;
211 -isc)
212 os=-isc2.2
213 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
214 ;;
215 -clix*)
216 basic_machine=clipper-intergraph
217 ;;
218 -isc*)
219 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
220 ;;
221 -lynx*)
222 os=-lynxos
223 ;;
224 -ptx*)
225 basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`
226 ;;
227 -windowsnt*)
228 os=`echo $os | sed -e 's/windowsnt/winnt/'`
229 ;;
230 -psos*)
231 os=-psos
232 ;;
ada59422
AC
233 -mint | -mint[0-9]*)
234 basic_machine=m68k-atari
235 os=-mint
236 ;;
252b5132
RH
237esac
238
239# Decode aliases for certain CPU-COMPANY combinations.
240case $basic_machine in
241 # Recognize the basic CPU types without company name.
242 # Some are omitted here because they have special meanings below.
82208dc5
AM
243 1750a | 580 \
244 | a29k \
245 | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
b020f6ac 246 | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \
1e600082 247 | am33_2.0 \
17bcf627 248 | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \
2faa2958 249 | bfin \
059083b1 250 | c4x | clipper \
1d7c1053 251 | d10v | d30v | dlx | dsp16xx \
0cfa5389 252 | fido | fr30 | frv \
82208dc5
AM
253 | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
254 | i370 | i860 | i960 | ia64 \
1e600082 255 | ip2k | iq2000 \
7d6d7764 256 | lm32 \
49b9e644 257 | m32c | m32r | m32rle | m68000 | m68k | m88k \
e2208220 258 | maxq | mb | microblaze | mcore | mep | metag \
51759676
CD
259 | mips | mipsbe | mipseb | mipsel | mipsle \
260 | mips16 \
261 | mips64 | mips64el \
a1f93a5e 262 | mips64octeon | mips64octeonel \
51759676 263 | mips64orion | mips64orionel \
a1f93a5e
BE
264 | mips64r5900 | mips64r5900el \
265 | mips64vr | mips64vrel \
51759676
CD
266 | mips64vr4100 | mips64vr4100el \
267 | mips64vr4300 | mips64vr4300el \
268 | mips64vr5000 | mips64vr5000el \
1d9c9cd7 269 | mips64vr5900 | mips64vr5900el \
51759676 270 | mipsisa32 | mipsisa32el \
3f234ef5 271 | mipsisa32r2 | mipsisa32r2el \
51759676 272 | mipsisa64 | mipsisa64el \
1e600082 273 | mipsisa64r2 | mipsisa64r2el \
51759676 274 | mipsisa64sb1 | mipsisa64sb1el \
fd31a171 275 | mipsisa64sr71k | mipsisa64sr71kel \
51759676 276 | mipstx39 | mipstx39el \
82208dc5 277 | mn10200 | mn10300 \
0000e2bf 278 | moxie \
4970f871 279 | mt \
3f234ef5 280 | msp430 \
49b9e644 281 | nios | nios2 \
82208dc5 282 | ns16k | ns32k \
1d9c9cd7 283 | or32 \
82208dc5
AM
284 | pdp10 | pdp11 | pj | pjl \
285 | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \
286 | pyramid \
17bcf627 287 | score \
7d6d7764 288 | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
51759676 289 | sh64 | sh64le \
49b9e644
BE
290 | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \
291 | sparcv8 | sparcv9 | sparcv9b | sparcv9v \
292 | spu | strongarm \
059083b1 293 | tahoe | thumb | tic4x | tic80 | tron \
0e254642 294 | v850 | v850e \
82208dc5 295 | we32k \
17bcf627 296 | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \
bc67ad83 297 | z8k | z80)
252b5132
RH
298 basic_machine=$basic_machine-unknown
299 ;;
1af08294
HPN
300 m6811 | m68hc11 | m6812 | m68hc12)
301 # Motorola 68HC11/12.
302 basic_machine=$basic_machine-unknown
303 os=-none
304 ;;
82208dc5 305 m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k)
ada59422 306 ;;
ec49b2b8
NC
307 ms1)
308 basic_machine=mt-unknown
309 ;;
ada59422 310
252b5132
RH
311 # We use `pc' rather than `unknown'
312 # because (1) that's what they normally are, and
313 # (2) the word "unknown" tends to confuse beginning users.
82208dc5 314 i*86 | x86_64)
252b5132
RH
315 basic_machine=$basic_machine-pc
316 ;;
317 # Object if more than one company name word.
318 *-*-*)
319 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
320 exit 1
321 ;;
322 # Recognize the basic CPU types with company name.
82208dc5
AM
323 580-* \
324 | a29k-* \
325 | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \
b020f6ac
L
326 | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
327 | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \
4b37028f 328 | arm-* | armbe-* | armle-* | armeb-* | armv*-* \
17bcf627 329 | avr-* | avr32-* \
2faa2958 330 | bfin-* | bs2000-* \
ee3fd329 331 | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \
eb1352ed 332 | clipper-* | craynv-* | cydra-* \
1d7c1053 333 | d10v-* | d30v-* | dlx-* \
82208dc5 334 | elxsi-* \
0cfa5389 335 | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \
82208dc5
AM
336 | h8300-* | h8500-* \
337 | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
338 | i*86-* | i860-* | i960-* | ia64-* \
1e600082 339 | ip2k-* | iq2000-* \
7d6d7764 340 | lm32-* \
49b9e644 341 | m32c-* | m32r-* | m32rle-* \
39121370 342 | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
2262bbf4 343 | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \
51759676
CD
344 | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \
345 | mips16-* \
346 | mips64-* | mips64el-* \
a1f93a5e 347 | mips64octeon-* | mips64octeonel-* \
51759676 348 | mips64orion-* | mips64orionel-* \
a1f93a5e
BE
349 | mips64r5900-* | mips64r5900el-* \
350 | mips64vr-* | mips64vrel-* \
51759676
CD
351 | mips64vr4100-* | mips64vr4100el-* \
352 | mips64vr4300-* | mips64vr4300el-* \
353 | mips64vr5000-* | mips64vr5000el-* \
1d9c9cd7 354 | mips64vr5900-* | mips64vr5900el-* \
51759676 355 | mipsisa32-* | mipsisa32el-* \
3f234ef5 356 | mipsisa32r2-* | mipsisa32r2el-* \
51759676 357 | mipsisa64-* | mipsisa64el-* \
1e600082 358 | mipsisa64r2-* | mipsisa64r2el-* \
51759676 359 | mipsisa64sb1-* | mipsisa64sb1el-* \
fd31a171 360 | mipsisa64sr71k-* | mipsisa64sr71kel-* \
3f234ef5 361 | mipstx39-* | mipstx39el-* \
eb1352ed 362 | mmix-* \
4970f871 363 | mt-* \
3f234ef5 364 | msp430-* \
49b9e644 365 | nios-* | nios2-* \
eb1352ed 366 | none-* | np1-* | ns16k-* | ns32k-* \
82208dc5
AM
367 | orion-* \
368 | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
369 | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \
370 | pyramid-* \
371 | romp-* | rs6000-* \
7d6d7764 372 | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \
51759676 373 | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
49b9e644 374 | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \
2faa2958 375 | sparclite-* \
49b9e644 376 | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \
ee3fd329 377 | tahoe-* | thumb-* \
a1f93a5e 378 | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* | tile-* \
ee3fd329 379 | tron-* \
0e254642 380 | v850-* | v850e-* | vax-* \
82208dc5 381 | we32k-* \
17bcf627 382 | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \
ad25e7d5 383 | xstormy16-* | xtensa*-* \
82208dc5 384 | ymp-* \
bc67ad83 385 | z8k-* | z80-*)
252b5132 386 ;;
ad25e7d5
BE
387 # Recognize the basic CPU types without company name, with glob match.
388 xtensa*)
389 basic_machine=$basic_machine-unknown
390 ;;
252b5132
RH
391 # Recognize the various machine names and aliases which stand
392 # for a CPU type and a company and sometimes even an OS.
6c3175b0 393 386bsd)
252b5132
RH
394 basic_machine=i386-unknown
395 os=-bsd
396 ;;
397 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
398 basic_machine=m68000-att
399 ;;
400 3b*)
401 basic_machine=we32k-att
402 ;;
6c3175b0 403 a29khif)
252b5132
RH
404 basic_machine=a29k-amd
405 os=-udi
406 ;;
1e600082
AC
407 abacus)
408 basic_machine=abacus-unknown
409 ;;
6c3175b0 410 adobe68k)
252b5132
RH
411 basic_machine=m68010-adobe
412 os=-scout
413 ;;
414 alliant | fx80)
415 basic_machine=fx80-alliant
416 ;;
417 altos | altos3068)
418 basic_machine=m68k-altos
419 ;;
420 am29k)
421 basic_machine=a29k-none
422 os=-bsd
423 ;;
5481b376
AJ
424 amd64)
425 basic_machine=x86_64-pc
426 ;;
1e600082
AC
427 amd64-*)
428 basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'`
429 ;;
252b5132
RH
430 amdahl)
431 basic_machine=580-amdahl
432 os=-sysv
433 ;;
434 amiga | amiga-*)
6e8dd58f 435 basic_machine=m68k-unknown
252b5132
RH
436 ;;
437 amigaos | amigados)
6e8dd58f 438 basic_machine=m68k-unknown
252b5132
RH
439 os=-amigaos
440 ;;
441 amigaunix | amix)
6e8dd58f 442 basic_machine=m68k-unknown
252b5132
RH
443 os=-sysv4
444 ;;
445 apollo68)
446 basic_machine=m68k-apollo
447 os=-sysv
448 ;;
6c3175b0 449 apollo68bsd)
252b5132
RH
450 basic_machine=m68k-apollo
451 os=-bsd
452 ;;
0000e2bf
BE
453 aros)
454 basic_machine=i386-pc
455 os=-aros
456 ;;
252b5132
RH
457 aux)
458 basic_machine=m68k-apple
459 os=-aux
460 ;;
461 balance)
462 basic_machine=ns32k-sequent
463 os=-dynix
464 ;;
ad25e7d5
BE
465 blackfin)
466 basic_machine=bfin-unknown
467 os=-linux
468 ;;
469 blackfin-*)
470 basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'`
471 os=-linux
472 ;;
2262bbf4
BE
473 bluegene*)
474 basic_machine=powerpc-ibm
475 os=-cnk
476 ;;
39121370
DJ
477 c90)
478 basic_machine=c90-cray
479 os=-unicos
480 ;;
bc67ad83
BE
481 cegcc)
482 basic_machine=arm-unknown
483 os=-cegcc
484 ;;
252b5132
RH
485 convex-c1)
486 basic_machine=c1-convex
487 os=-bsd
488 ;;
489 convex-c2)
490 basic_machine=c2-convex
491 os=-bsd
492 ;;
493 convex-c32)
494 basic_machine=c32-convex
495 os=-bsd
496 ;;
497 convex-c34)
498 basic_machine=c34-convex
499 os=-bsd
500 ;;
501 convex-c38)
502 basic_machine=c38-convex
503 os=-bsd
504 ;;
39121370
DJ
505 cray | j90)
506 basic_machine=j90-cray
252b5132
RH
507 os=-unicos
508 ;;
eb1352ed
NC
509 craynv)
510 basic_machine=craynv-cray
511 os=-unicosmp
512 ;;
f00a3165 513 cr16)
971aaaa5
NC
514 basic_machine=cr16-unknown
515 os=-elf
516 ;;
252b5132
RH
517 crds | unos)
518 basic_machine=m68k-crds
519 ;;
eb1352ed
NC
520 crisv32 | crisv32-* | etraxfs*)
521 basic_machine=crisv32-axis
522 ;;
1af08294
HPN
523 cris | cris-* | etrax*)
524 basic_machine=cris-axis
525 ;;
eb1352ed
NC
526 crx)
527 basic_machine=crx-unknown
528 os=-elf
529 ;;
252b5132
RH
530 da30 | da30-*)
531 basic_machine=m68k-da30
532 ;;
533 decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn)
534 basic_machine=mips-dec
535 ;;
0e254642
AM
536 decsystem10* | dec10*)
537 basic_machine=pdp10-dec
538 os=-tops10
539 ;;
540 decsystem20* | dec20*)
541 basic_machine=pdp10-dec
542 os=-tops20
543 ;;
252b5132
RH
544 delta | 3300 | motorola-3300 | motorola-delta \
545 | 3300-motorola | delta-motorola)
546 basic_machine=m68k-motorola
547 ;;
548 delta88)
549 basic_machine=m88k-motorola
550 os=-sysv3
551 ;;
e2208220
BE
552 dicos)
553 basic_machine=i686-pc
554 os=-dicos
555 ;;
57d1eb1a
DD
556 djgpp)
557 basic_machine=i586-pc
558 os=-msdosdjgpp
559 ;;
252b5132
RH
560 dpx20 | dpx20-*)
561 basic_machine=rs6000-bull
562 os=-bosx
563 ;;
564 dpx2* | dpx2*-bull)
565 basic_machine=m68k-bull
566 os=-sysv3
567 ;;
568 ebmon29k)
569 basic_machine=a29k-amd
570 os=-ebmon
571 ;;
572 elxsi)
573 basic_machine=elxsi-elxsi
574 os=-bsd
575 ;;
576 encore | umax | mmax)
577 basic_machine=ns32k-encore
578 ;;
6c3175b0 579 es1800 | OSE68k | ose68k | ose | OSE)
252b5132
RH
580 basic_machine=m68k-ericsson
581 os=-ose
582 ;;
583 fx2800)
584 basic_machine=i860-alliant
585 ;;
586 genix)
587 basic_machine=ns32k-ns
588 ;;
589 gmicro)
590 basic_machine=tron-gmicro
591 os=-sysv
592 ;;
9dec4c71
MS
593 go32)
594 basic_machine=i386-pc
595 os=-go32
596 ;;
252b5132
RH
597 h3050r* | hiux*)
598 basic_machine=hppa1.1-hitachi
599 os=-hiuxwe2
600 ;;
601 h8300hms)
602 basic_machine=h8300-hitachi
603 os=-hms
604 ;;
6c3175b0 605 h8300xray)
252b5132
RH
606 basic_machine=h8300-hitachi
607 os=-xray
608 ;;
6c3175b0 609 h8500hms)
252b5132
RH
610 basic_machine=h8500-hitachi
611 os=-hms
612 ;;
613 harris)
614 basic_machine=m88k-harris
615 os=-sysv3
616 ;;
617 hp300-*)
618 basic_machine=m68k-hp
619 ;;
620 hp300bsd)
621 basic_machine=m68k-hp
622 os=-bsd
623 ;;
624 hp300hpux)
625 basic_machine=m68k-hp
626 os=-hpux
627 ;;
252b5132
RH
628 hp3k9[0-9][0-9] | hp9[0-9][0-9])
629 basic_machine=hppa1.0-hp
630 ;;
631 hp9k2[0-9][0-9] | hp9k31[0-9])
632 basic_machine=m68000-hp
633 ;;
634 hp9k3[2-9][0-9])
635 basic_machine=m68k-hp
636 ;;
6c3175b0 637 hp9k6[0-9][0-9] | hp6[0-9][0-9])
252b5132
RH
638 basic_machine=hppa1.0-hp
639 ;;
6c3175b0 640 hp9k7[0-79][0-9] | hp7[0-79][0-9])
252b5132
RH
641 basic_machine=hppa1.1-hp
642 ;;
6c3175b0 643 hp9k78[0-9] | hp78[0-9])
252b5132
RH
644 # FIXME: really hppa2.0-hp
645 basic_machine=hppa1.1-hp
646 ;;
6c3175b0 647 hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893)
252b5132
RH
648 # FIXME: really hppa2.0-hp
649 basic_machine=hppa1.1-hp
650 ;;
6c3175b0 651 hp9k8[0-9][13679] | hp8[0-9][13679])
252b5132
RH
652 basic_machine=hppa1.1-hp
653 ;;
654 hp9k8[0-9][0-9] | hp8[0-9][0-9])
655 basic_machine=hppa1.0-hp
656 ;;
657 hppa-next)
658 os=-nextstep3
659 ;;
6c3175b0 660 hppaosf)
252b5132
RH
661 basic_machine=hppa1.1-hp
662 os=-osf
663 ;;
6c3175b0
NC
664 hppro)
665 basic_machine=hppa1.1-hp
666 os=-proelf
667 ;;
252b5132
RH
668 i370-ibm* | ibm*)
669 basic_machine=i370-ibm
252b5132
RH
670 ;;
671# I'm not sure what "Sysv32" means. Should this be sysv3.2?
82208dc5 672 i*86v32)
252b5132
RH
673 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
674 os=-sysv32
675 ;;
82208dc5 676 i*86v4*)
252b5132
RH
677 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
678 os=-sysv4
679 ;;
82208dc5 680 i*86v)
252b5132
RH
681 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
682 os=-sysv
683 ;;
82208dc5 684 i*86sol2)
252b5132
RH
685 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
686 os=-solaris2
687 ;;
6c3175b0 688 i386mach)
252b5132
RH
689 basic_machine=i386-mach
690 os=-mach
691 ;;
6c3175b0 692 i386-vsta | vsta)
252b5132
RH
693 basic_machine=i386-unknown
694 os=-vsta
695 ;;
252b5132
RH
696 iris | iris4d)
697 basic_machine=mips-sgi
698 case $os in
699 -irix*)
700 ;;
701 *)
702 os=-irix4
703 ;;
704 esac
705 ;;
706 isi68 | isi)
707 basic_machine=m68k-isi
708 os=-sysv
709 ;;
ad25e7d5
BE
710 m68knommu)
711 basic_machine=m68k-unknown
712 os=-linux
713 ;;
714 m68knommu-*)
715 basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'`
716 os=-linux
717 ;;
252b5132
RH
718 m88k-omron*)
719 basic_machine=m88k-omron
720 ;;
721 magnum | m3230)
722 basic_machine=mips-mips
723 os=-sysv
724 ;;
725 merlin)
726 basic_machine=ns32k-utek
727 os=-sysv
728 ;;
2262bbf4
BE
729 microblaze)
730 basic_machine=microblaze-xilinx
731 ;;
9dec4c71
MS
732 mingw32)
733 basic_machine=i386-pc
734 os=-mingw32
735 ;;
98a1bbc5
BE
736 mingw32ce)
737 basic_machine=arm-unknown
738 os=-mingw32ce
739 ;;
252b5132
RH
740 miniframe)
741 basic_machine=m68000-convergent
742 ;;
ada59422 743 *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*)
6c3175b0
NC
744 basic_machine=m68k-atari
745 os=-mint
746 ;;
252b5132
RH
747 mips3*-*)
748 basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
749 ;;
750 mips3*)
751 basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
752 ;;
6c3175b0 753 monitor)
252b5132
RH
754 basic_machine=m68k-rom68k
755 os=-coff
756 ;;
b020f6ac
L
757 morphos)
758 basic_machine=powerpc-unknown
759 os=-morphos
760 ;;
6c3175b0 761 msdos)
9dec4c71 762 basic_machine=i386-pc
252b5132
RH
763 os=-msdos
764 ;;
4970f871 765 ms1-*)
ec49b2b8 766 basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
4970f871 767 ;;
ada59422
AC
768 mvs)
769 basic_machine=i370-ibm
770 os=-mvs
771 ;;
252b5132
RH
772 ncr3000)
773 basic_machine=i486-ncr
774 os=-sysv4
775 ;;
776 netbsd386)
6c3175b0 777 basic_machine=i386-unknown
252b5132
RH
778 os=-netbsd
779 ;;
780 netwinder)
ada59422 781 basic_machine=armv4l-rebel
252b5132
RH
782 os=-linux
783 ;;
784 news | news700 | news800 | news900)
785 basic_machine=m68k-sony
786 os=-newsos
787 ;;
788 news1000)
789 basic_machine=m68030-sony
790 os=-newsos
791 ;;
792 news-3600 | risc-news)
793 basic_machine=mips-sony
794 os=-newsos
795 ;;
6c3175b0 796 necv70)
252b5132
RH
797 basic_machine=v70-nec
798 os=-sysv
799 ;;
800 next | m*-next )
801 basic_machine=m68k-next
802 case $os in
803 -nextstep* )
804 ;;
805 -ns2*)
806 os=-nextstep2
807 ;;
808 *)
809 os=-nextstep3
810 ;;
811 esac
812 ;;
813 nh3000)
814 basic_machine=m68k-harris
815 os=-cxux
816 ;;
817 nh[45]000)
818 basic_machine=m88k-harris
819 os=-cxux
820 ;;
821 nindy960)
822 basic_machine=i960-intel
823 os=-nindy
824 ;;
6c3175b0 825 mon960)
252b5132
RH
826 basic_machine=i960-intel
827 os=-mon960
828 ;;
35590697
AJ
829 nonstopux)
830 basic_machine=mips-compaq
831 os=-nonstopux
832 ;;
252b5132
RH
833 np1)
834 basic_machine=np1-gould
835 ;;
ac73857d
AC
836 nsr-tandem)
837 basic_machine=nsr-tandem
838 ;;
6c3175b0
NC
839 op50n-* | op60c-*)
840 basic_machine=hppa1.1-oki
841 os=-proelf
842 ;;
1d9c9cd7 843 openrisc | openrisc-*)
f6e1c110 844 basic_machine=or32-unknown
f6e1c110 845 ;;
1e600082
AC
846 os400)
847 basic_machine=powerpc-ibm
848 os=-os400
849 ;;
6c3175b0 850 OSE68000 | ose68000)
252b5132
RH
851 basic_machine=m68000-ericsson
852 os=-ose
853 ;;
6c3175b0 854 os68k)
252b5132
RH
855 basic_machine=m68k-none
856 os=-os68k
857 ;;
858 pa-hitachi)
859 basic_machine=hppa1.1-hitachi
860 os=-hiuxwe2
861 ;;
862 paragon)
863 basic_machine=i860-intel
864 os=-osf
865 ;;
ad25e7d5
BE
866 parisc)
867 basic_machine=hppa-unknown
868 os=-linux
869 ;;
870 parisc-*)
871 basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'`
872 os=-linux
873 ;;
252b5132
RH
874 pbd)
875 basic_machine=sparc-tti
876 ;;
877 pbb)
878 basic_machine=m68k-tti
879 ;;
fd31a171 880 pc532 | pc532-*)
252b5132
RH
881 basic_machine=ns32k-pc532
882 ;;
ec49b2b8
NC
883 pc98)
884 basic_machine=i386-pc
885 ;;
886 pc98-*)
887 basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'`
888 ;;
26ef82f4 889 pentium | p5 | k5 | k6 | nexgen | viac3)
252b5132
RH
890 basic_machine=i586-pc
891 ;;
fd31a171 892 pentiumpro | p6 | 6x86 | athlon | athlon_*)
252b5132
RH
893 basic_machine=i686-pc
894 ;;
00c22daa 895 pentiumii | pentium2 | pentiumiii | pentium3)
35590697 896 basic_machine=i686-pc
252b5132 897 ;;
00c22daa
L
898 pentium4)
899 basic_machine=i786-pc
900 ;;
26ef82f4 901 pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
252b5132
RH
902 basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`
903 ;;
1af08294 904 pentiumpro-* | p6-* | 6x86-* | athlon-*)
252b5132
RH
905 basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
906 ;;
00c22daa 907 pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*)
35590697 908 basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
252b5132 909 ;;
00c22daa
L
910 pentium4-*)
911 basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'`
912 ;;
252b5132
RH
913 pn)
914 basic_machine=pn-gould
915 ;;
35590697 916 power) basic_machine=power-ibm
252b5132
RH
917 ;;
918 ppc) basic_machine=powerpc-unknown
fd31a171 919 ;;
252b5132
RH
920 ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
921 ;;
922 ppcle | powerpclittle | ppc-le | powerpc-little)
923 basic_machine=powerpcle-unknown
fd31a171 924 ;;
252b5132
RH
925 ppcle-* | powerpclittle-*)
926 basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'`
927 ;;
82208dc5 928 ppc64) basic_machine=powerpc64-unknown
fd31a171 929 ;;
82208dc5
AM
930 ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'`
931 ;;
932 ppc64le | powerpc64little | ppc64-le | powerpc64-little)
933 basic_machine=powerpc64le-unknown
fd31a171 934 ;;
82208dc5
AM
935 ppc64le-* | powerpc64little-*)
936 basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'`
937 ;;
252b5132
RH
938 ps2)
939 basic_machine=i386-ibm
940 ;;
9dec4c71
MS
941 pw32)
942 basic_machine=i586-unknown
943 os=-pw32
944 ;;
ec49b2b8
NC
945 rdos)
946 basic_machine=i386-pc
947 os=-rdos
948 ;;
6c3175b0 949 rom68k)
252b5132
RH
950 basic_machine=m68k-rom68k
951 os=-coff
952 ;;
953 rm[46]00)
954 basic_machine=mips-siemens
955 ;;
956 rtpc | rtpc-*)
957 basic_machine=romp-ibm
958 ;;
26ef82f4
GK
959 s390 | s390-*)
960 basic_machine=s390-ibm
961 ;;
962 s390x | s390x-*)
963 basic_machine=s390x-ibm
964 ;;
6c3175b0 965 sa29200)
252b5132
RH
966 basic_machine=a29k-amd
967 os=-udi
968 ;;
fd31a171
AC
969 sb1)
970 basic_machine=mipsisa64sb1-unknown
971 ;;
972 sb1el)
973 basic_machine=mipsisa64sb1el-unknown
974 ;;
4be041b2
TS
975 sde)
976 basic_machine=mipsisa32-sde
977 os=-elf
978 ;;
1e600082
AC
979 sei)
980 basic_machine=mips-sei
981 os=-seiux
982 ;;
252b5132
RH
983 sequent)
984 basic_machine=i386-sequent
985 ;;
986 sh)
987 basic_machine=sh-hitachi
988 os=-hms
989 ;;
0cfa5389
BE
990 sh5el)
991 basic_machine=sh5le-unknown
992 ;;
1e600082
AC
993 sh64)
994 basic_machine=sh64-unknown
995 ;;
26ef82f4 996 sparclite-wrs | simso-wrs)
252b5132
RH
997 basic_machine=sparclite-wrs
998 os=-vxworks
999 ;;
1000 sps7)
1001 basic_machine=m68k-bull
1002 os=-sysv2
1003 ;;
1004 spur)
1005 basic_machine=spur-unknown
1006 ;;
6c3175b0 1007 st2000)
252b5132
RH
1008 basic_machine=m68k-tandem
1009 ;;
6c3175b0 1010 stratus)
252b5132
RH
1011 basic_machine=i860-stratus
1012 os=-sysv4
1013 ;;
1014 sun2)
1015 basic_machine=m68000-sun
1016 ;;
1017 sun2os3)
1018 basic_machine=m68000-sun
1019 os=-sunos3
1020 ;;
1021 sun2os4)
1022 basic_machine=m68000-sun
1023 os=-sunos4
1024 ;;
1025 sun3os3)
1026 basic_machine=m68k-sun
1027 os=-sunos3
1028 ;;
1029 sun3os4)
1030 basic_machine=m68k-sun
1031 os=-sunos4
1032 ;;
1033 sun4os3)
1034 basic_machine=sparc-sun
1035 os=-sunos3
1036 ;;
1037 sun4os4)
1038 basic_machine=sparc-sun
1039 os=-sunos4
1040 ;;
1041 sun4sol2)
1042 basic_machine=sparc-sun
1043 os=-solaris2
1044 ;;
1045 sun3 | sun3-*)
1046 basic_machine=m68k-sun
1047 ;;
1048 sun4)
1049 basic_machine=sparc-sun
1050 ;;
1051 sun386 | sun386i | roadrunner)
1052 basic_machine=i386-sun
1053 ;;
fd31a171 1054 sv1)
ada59422
AC
1055 basic_machine=sv1-cray
1056 os=-unicos
1057 ;;
252b5132
RH
1058 symmetry)
1059 basic_machine=i386-sequent
1060 os=-dynix
1061 ;;
6c3175b0 1062 t3e)
39121370
DJ
1063 basic_machine=alphaev5-cray
1064 os=-unicos
1065 ;;
1066 t90)
1067 basic_machine=t90-cray
6c3175b0
NC
1068 os=-unicos
1069 ;;
1af08294
HPN
1070 tic54x | c54x*)
1071 basic_machine=tic54x-unknown
1072 os=-coff
1073 ;;
ee3fd329
AM
1074 tic55x | c55x*)
1075 basic_machine=tic55x-unknown
1076 os=-coff
1077 ;;
1078 tic6x | c6x*)
1079 basic_machine=tic6x-unknown
1080 os=-coff
1081 ;;
19090595
BE
1082 tile*)
1083 basic_machine=tile-unknown
1084 os=-linux-gnu
1085 ;;
252b5132
RH
1086 tx39)
1087 basic_machine=mipstx39-unknown
1088 ;;
1089 tx39el)
1090 basic_machine=mipstx39el-unknown
1091 ;;
0e254642
AM
1092 toad1)
1093 basic_machine=pdp10-xkl
1094 os=-tops20
1095 ;;
252b5132
RH
1096 tower | tower-32)
1097 basic_machine=m68k-ncr
1098 ;;
1e600082
AC
1099 tpf)
1100 basic_machine=s390x-ibm
1101 os=-tpf
1102 ;;
252b5132
RH
1103 udi29k)
1104 basic_machine=a29k-amd
1105 os=-udi
1106 ;;
1107 ultra3)
1108 basic_machine=a29k-nyu
1109 os=-sym1
1110 ;;
6c3175b0 1111 v810 | necv810)
252b5132
RH
1112 basic_machine=v810-nec
1113 os=-none
1114 ;;
1115 vaxv)
1116 basic_machine=vax-dec
1117 os=-sysv
1118 ;;
1119 vms)
1120 basic_machine=vax-dec
1121 os=-vms
1122 ;;
1123 vpp*|vx|vx-*)
fd31a171
AC
1124 basic_machine=f301-fujitsu
1125 ;;
252b5132
RH
1126 vxworks960)
1127 basic_machine=i960-wrs
1128 os=-vxworks
1129 ;;
1130 vxworks68)
1131 basic_machine=m68k-wrs
1132 os=-vxworks
1133 ;;
1134 vxworks29k)
1135 basic_machine=a29k-wrs
1136 os=-vxworks
1137 ;;
6c3175b0
NC
1138 w65*)
1139 basic_machine=w65-wdc
1140 os=-none
1141 ;;
1142 w89k-*)
1143 basic_machine=hppa1.1-winbond
1144 os=-proelf
252b5132 1145 ;;
a1e0f4e4
KC
1146 xbox)
1147 basic_machine=i686-pc
1148 os=-mingw32
1149 ;;
fd31a171 1150 xps | xps100)
252b5132
RH
1151 basic_machine=xps100-honeywell
1152 ;;
39121370
DJ
1153 ymp)
1154 basic_machine=ymp-cray
1155 os=-unicos
1156 ;;
6c3175b0 1157 z8k-*-coff)
252b5132
RH
1158 basic_machine=z8k-unknown
1159 os=-sim
1160 ;;
bc67ad83
BE
1161 z80-*-coff)
1162 basic_machine=z80-unknown
1163 os=-sim
1164 ;;
252b5132
RH
1165 none)
1166 basic_machine=none-none
1167 os=-none
1168 ;;
1169
1170# Here we handle the default manufacturer of certain CPU types. It is in
1171# some cases the only manufacturer, in others, it is the most popular.
6c3175b0 1172 w89k)
252b5132
RH
1173 basic_machine=hppa1.1-winbond
1174 ;;
6c3175b0 1175 op50n)
252b5132
RH
1176 basic_machine=hppa1.1-oki
1177 ;;
6c3175b0 1178 op60c)
252b5132
RH
1179 basic_machine=hppa1.1-oki
1180 ;;
252b5132
RH
1181 romp)
1182 basic_machine=romp-ibm
1183 ;;
eb1352ed
NC
1184 mmix)
1185 basic_machine=mmix-knuth
1186 ;;
252b5132
RH
1187 rs6000)
1188 basic_machine=rs6000-ibm
1189 ;;
1190 vax)
1191 basic_machine=vax-dec
1192 ;;
9dec4c71
MS
1193 pdp10)
1194 # there are many clones, so DEC is not a safe bet
1195 basic_machine=pdp10-unknown
1196 ;;
252b5132
RH
1197 pdp11)
1198 basic_machine=pdp11-dec
1199 ;;
1200 we32k)
1201 basic_machine=we32k-att
1202 ;;
7d6d7764 1203 sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele)
35590697 1204 basic_machine=sh-unknown
1af08294 1205 ;;
49b9e644 1206 sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v)
252b5132
RH
1207 basic_machine=sparc-sun
1208 ;;
fd31a171 1209 cydra)
252b5132
RH
1210 basic_machine=cydra-cydrome
1211 ;;
1212 orion)
1213 basic_machine=orion-highlevel
1214 ;;
1215 orion105)
1216 basic_machine=clipper-highlevel
1217 ;;
6c3175b0 1218 mac | mpw | mac-mpw)
252b5132
RH
1219 basic_machine=m68k-apple
1220 ;;
6c3175b0 1221 pmac | pmac-mpw)
252b5132
RH
1222 basic_machine=powerpc-apple
1223 ;;
82208dc5
AM
1224 *-unknown)
1225 # Make sure to match an already-canonicalized machine name.
1226 ;;
252b5132
RH
1227 *)
1228 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
1229 exit 1
1230 ;;
1231esac
1232
1233# Here we canonicalize certain aliases for manufacturers.
1234case $basic_machine in
1235 *-digital*)
1236 basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
1237 ;;
1238 *-commodore*)
1239 basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
1240 ;;
1241 *)
1242 ;;
1243esac
1244
1245# Decode manufacturer-specific aliases for certain operating systems.
1246
1247if [ x"$os" != x"" ]
1248then
1249case $os in
1250 # First match some system type aliases
1251 # that might get confused with valid system types.
1252 # -solaris* is a basic system type, with this one exception.
1253 -solaris1 | -solaris1.*)
1254 os=`echo $os | sed -e 's|solaris1|sunos4|'`
1255 ;;
1256 -solaris)
1257 os=-solaris2
1258 ;;
1259 -svr4*)
1260 os=-sysv4
1261 ;;
1262 -unixware*)
1263 os=-sysv4.2uw
1264 ;;
1265 -gnu/linux*)
1266 os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
1267 ;;
1268 # First accept the basic system types.
1269 # The portable systems comes first.
1270 # Each alternative MUST END IN A *, to match a version number.
1271 # -sysv* is not here because it comes later, after sysvr4.
1272 -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
2262bbf4 1273 | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\
252b5132 1274 | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \
0000e2bf 1275 | -kopensolaris* \
252b5132 1276 | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \
0000e2bf 1277 | -aos* | -aros* \
252b5132
RH
1278 | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
1279 | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
ec49b2b8
NC
1280 | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \
1281 | -openbsd* | -solidbsd* \
1e600082
AC
1282 | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \
1283 | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
252b5132
RH
1284 | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
1285 | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
bc67ad83 1286 | -chorusos* | -chorusrdb* | -cegcc* \
252b5132 1287 | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
ec49b2b8
NC
1288 | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \
1289 | -uxpv* | -beos* | -mpeix* | -udk* \
3f234ef5 1290 | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
9dec4c71 1291 | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
82208dc5 1292 | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \
39121370 1293 | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
3f234ef5 1294 | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
1d9c9cd7 1295 | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
98a1bbc5 1296 | -skyos* | -haiku* | -rdos* | -toppers* | -drops*)
252b5132
RH
1297 # Remember, each alternative MUST END IN *, to match a version number.
1298 ;;
ac73857d
AC
1299 -qnx*)
1300 case $basic_machine in
82208dc5 1301 x86-* | i*86-*)
ac73857d
AC
1302 ;;
1303 *)
1304 os=-nto$os
1305 ;;
1306 esac
1307 ;;
3f234ef5
CD
1308 -nto-qnx*)
1309 ;;
ac73857d 1310 -nto*)
3f234ef5 1311 os=`echo $os | sed -e 's|nto|nto-qnx|'`
ac73857d 1312 ;;
252b5132 1313 -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \
1d9c9cd7 1314 | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \
ada59422 1315 | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*)
252b5132
RH
1316 ;;
1317 -mac*)
1318 os=`echo $os | sed -e 's|mac|macos|'`
1319 ;;
1e600082
AC
1320 -linux-dietlibc)
1321 os=-linux-dietlibc
1322 ;;
252b5132
RH
1323 -linux*)
1324 os=`echo $os | sed -e 's|linux|linux-gnu|'`
1325 ;;
1326 -sunos5*)
1327 os=`echo $os | sed -e 's|sunos5|solaris2|'`
1328 ;;
1329 -sunos6*)
1330 os=`echo $os | sed -e 's|sunos6|solaris3|'`
1331 ;;
ada59422
AC
1332 -opened*)
1333 os=-openedition
1334 ;;
1e600082
AC
1335 -os400*)
1336 os=-os400
1337 ;;
4bab746c
NC
1338 -wince*)
1339 os=-wince
1340 ;;
252b5132
RH
1341 -osfrose*)
1342 os=-osfrose
1343 ;;
1344 -osf*)
1345 os=-osf
1346 ;;
1347 -utek*)
1348 os=-bsd
1349 ;;
1350 -dynix*)
1351 os=-bsd
1352 ;;
1353 -acis*)
1354 os=-aos
1355 ;;
26ef82f4
GK
1356 -atheos*)
1357 os=-atheos
1358 ;;
1e600082
AC
1359 -syllable*)
1360 os=-syllable
1361 ;;
6c3175b0 1362 -386bsd)
252b5132
RH
1363 os=-bsd
1364 ;;
1365 -ctix* | -uts*)
1366 os=-sysv
1367 ;;
39121370
DJ
1368 -nova*)
1369 os=-rtmk-nova
1370 ;;
252b5132 1371 -ns2 )
fd31a171 1372 os=-nextstep2
252b5132 1373 ;;
6e8dd58f 1374 -nsk*)
ac73857d
AC
1375 os=-nsk
1376 ;;
252b5132
RH
1377 # Preserve the version number of sinix5.
1378 -sinix5.*)
1379 os=`echo $os | sed -e 's|sinix|sysv|'`
1380 ;;
1381 -sinix*)
1382 os=-sysv4
1383 ;;
1e600082
AC
1384 -tpf*)
1385 os=-tpf
1386 ;;
252b5132
RH
1387 -triton*)
1388 os=-sysv3
1389 ;;
1390 -oss*)
1391 os=-sysv3
1392 ;;
1393 -svr4)
1394 os=-sysv4
1395 ;;
1396 -svr3)
1397 os=-sysv3
1398 ;;
1399 -sysvr4)
1400 os=-sysv4
1401 ;;
1402 # This must come after -sysvr4.
1403 -sysv*)
1404 ;;
6c3175b0 1405 -ose*)
252b5132
RH
1406 os=-ose
1407 ;;
6c3175b0 1408 -es1800*)
252b5132
RH
1409 os=-ose
1410 ;;
1411 -xenix)
1412 os=-xenix
1413 ;;
fd31a171
AC
1414 -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
1415 os=-mint
6c3175b0 1416 ;;
ee3fd329
AM
1417 -aros*)
1418 os=-aros
1419 ;;
1420 -kaos*)
1421 os=-kaos
1422 ;;
57d1eb1a
DD
1423 -zvmoe)
1424 os=-zvmoe
1425 ;;
e2208220
BE
1426 -dicos*)
1427 os=-dicos
1428 ;;
252b5132
RH
1429 -none)
1430 ;;
1431 *)
1432 # Get rid of the `-' at the beginning of $os.
1433 os=`echo $os | sed 's/[^-]*-//'`
1434 echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2
1435 exit 1
1436 ;;
1437esac
1438else
1439
1440# Here we handle the default operating systems that come with various machines.
1441# The value should be what the vendor currently ships out the door with their
1442# machine or put another way, the most popular os provided with the machine.
1443
1444# Note that if you're going to try to match "-MANUFACTURER" here (say,
1445# "-sun"), then you have to tell the case statement up towards the top
1446# that MANUFACTURER isn't an operating system. Otherwise, code above
1447# will signal an error saying that MANUFACTURER isn't an operating
1448# system, and we'll never get to this point.
1449
1450case $basic_machine in
17bcf627
BE
1451 score-*)
1452 os=-elf
1453 ;;
ea3d1626
BE
1454 spu-*)
1455 os=-elf
1456 ;;
252b5132
RH
1457 *-acorn)
1458 os=-riscix1.2
1459 ;;
ada59422 1460 arm*-rebel)
252b5132
RH
1461 os=-linux
1462 ;;
1463 arm*-semi)
1464 os=-aout
1465 ;;
ea3d1626
BE
1466 c4x-* | tic4x-*)
1467 os=-coff
1468 ;;
0e254642 1469 # This must come before the *-dec entry.
9dec4c71
MS
1470 pdp10-*)
1471 os=-tops20
1472 ;;
fd31a171 1473 pdp11-*)
252b5132
RH
1474 os=-none
1475 ;;
1476 *-dec | vax-*)
1477 os=-ultrix4.2
1478 ;;
1479 m68*-apollo)
1480 os=-domain
1481 ;;
1482 i386-sun)
1483 os=-sunos4.0.2
1484 ;;
1485 m68000-sun)
1486 os=-sunos3
1487 # This also exists in the configure program, but was not the
1488 # default.
1489 # os=-sunos4
1490 ;;
6c3175b0 1491 m68*-cisco)
252b5132
RH
1492 os=-aout
1493 ;;
98a1bbc5
BE
1494 mep-*)
1495 os=-elf
1496 ;;
6c3175b0
NC
1497 mips*-cisco)
1498 os=-elf
1499 ;;
1500 mips*-*)
252b5132
RH
1501 os=-elf
1502 ;;
f6e1c110
BE
1503 or32-*)
1504 os=-coff
1505 ;;
252b5132
RH
1506 *-tti) # must be before sparc entry or we get the wrong os.
1507 os=-sysv3
1508 ;;
1509 sparc-* | *-sun)
1510 os=-sunos4.1.1
1511 ;;
1512 *-be)
1513 os=-beos
1514 ;;
1d9c9cd7
KC
1515 *-haiku)
1516 os=-haiku
1517 ;;
252b5132
RH
1518 *-ibm)
1519 os=-aix
1520 ;;
eb1352ed
NC
1521 *-knuth)
1522 os=-mmixware
1523 ;;
6c3175b0 1524 *-wec)
252b5132
RH
1525 os=-proelf
1526 ;;
6c3175b0 1527 *-winbond)
252b5132
RH
1528 os=-proelf
1529 ;;
6c3175b0 1530 *-oki)
252b5132
RH
1531 os=-proelf
1532 ;;
1533 *-hp)
1534 os=-hpux
1535 ;;
1536 *-hitachi)
1537 os=-hiux
1538 ;;
1539 i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent)
1540 os=-sysv
1541 ;;
1542 *-cbm)
1543 os=-amigaos
1544 ;;
1545 *-dg)
1546 os=-dgux
1547 ;;
1548 *-dolphin)
1549 os=-sysv3
1550 ;;
1551 m68k-ccur)
1552 os=-rtu
1553 ;;
1554 m88k-omron*)
1555 os=-luna
1556 ;;
1557 *-next )
1558 os=-nextstep
1559 ;;
1560 *-sequent)
1561 os=-ptx
1562 ;;
1563 *-crds)
1564 os=-unos
1565 ;;
1566 *-ns)
1567 os=-genix
1568 ;;
1569 i370-*)
1570 os=-mvs
1571 ;;
1572 *-next)
1573 os=-nextstep3
1574 ;;
fd31a171 1575 *-gould)
252b5132
RH
1576 os=-sysv
1577 ;;
fd31a171 1578 *-highlevel)
252b5132
RH
1579 os=-bsd
1580 ;;
1581 *-encore)
1582 os=-bsd
1583 ;;
fd31a171 1584 *-sgi)
252b5132
RH
1585 os=-irix
1586 ;;
fd31a171 1587 *-siemens)
252b5132
RH
1588 os=-sysv4
1589 ;;
1590 *-masscomp)
1591 os=-rtu
1592 ;;
35590697 1593 f30[01]-fujitsu | f700-fujitsu)
252b5132
RH
1594 os=-uxpv
1595 ;;
6c3175b0 1596 *-rom68k)
252b5132
RH
1597 os=-coff
1598 ;;
6c3175b0 1599 *-*bug)
252b5132
RH
1600 os=-coff
1601 ;;
6c3175b0 1602 *-apple)
252b5132
RH
1603 os=-macos
1604 ;;
6c3175b0
NC
1605 *-atari*)
1606 os=-mint
1607 ;;
252b5132
RH
1608 *)
1609 os=-none
1610 ;;
1611esac
1612fi
1613
1614# Here we handle the case where we know the os, and the CPU type, but not the
1615# manufacturer. We pick the logical manufacturer.
1616vendor=unknown
1617case $basic_machine in
1618 *-unknown)
1619 case $os in
1620 -riscix*)
1621 vendor=acorn
1622 ;;
1623 -sunos*)
1624 vendor=sun
1625 ;;
2262bbf4 1626 -cnk*|-aix*)
252b5132
RH
1627 vendor=ibm
1628 ;;
1629 -beos*)
1630 vendor=be
1631 ;;
1632 -hpux*)
1633 vendor=hp
1634 ;;
1635 -mpeix*)
1636 vendor=hp
1637 ;;
1638 -hiux*)
1639 vendor=hitachi
1640 ;;
1641 -unos*)
1642 vendor=crds
1643 ;;
1644 -dgux*)
1645 vendor=dg
1646 ;;
1647 -luna*)
1648 vendor=omron
1649 ;;
1650 -genix*)
1651 vendor=ns
1652 ;;
ada59422 1653 -mvs* | -opened*)
252b5132
RH
1654 vendor=ibm
1655 ;;
1e600082
AC
1656 -os400*)
1657 vendor=ibm
1658 ;;
252b5132
RH
1659 -ptx*)
1660 vendor=sequent
1661 ;;
1e600082
AC
1662 -tpf*)
1663 vendor=ibm
1664 ;;
5f284831 1665 -vxsim* | -vxworks* | -windiss*)
252b5132
RH
1666 vendor=wrs
1667 ;;
1668 -aux*)
1669 vendor=apple
1670 ;;
6c3175b0 1671 -hms*)
252b5132
RH
1672 vendor=hitachi
1673 ;;
6c3175b0 1674 -mpw* | -macos*)
252b5132
RH
1675 vendor=apple
1676 ;;
35590697 1677 -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
6c3175b0
NC
1678 vendor=atari
1679 ;;
82208dc5
AM
1680 -vos*)
1681 vendor=stratus
1682 ;;
252b5132
RH
1683 esac
1684 basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
1685 ;;
1686esac
1687
1688echo $basic_machine$os
1d9c9cd7 1689exit
ac73857d
AC
1690
1691# Local variables:
1692# eval: (add-hook 'write-file-hooks 'time-stamp)
35590697 1693# time-stamp-start: "timestamp='"
ac73857d
AC
1694# time-stamp-format: "%:y-%02m-%02d"
1695# time-stamp-end: "'"
1696# End: