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