comparison config.sub @ 1644:b3196c46f780

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