Fixes to comments.
[AROS.git] / workbench / devs / AHI / config.sub
blob7724a304ebc8432d6a138987072ae1f1b45a9a88
1 #! /bin/sh
2 # Configuration validation subroutine script.
3 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
4 # Free Software Foundation, Inc.
6 timestamp='2003-04-13'
8 # This file is (in principle) common to ALL GNU software.
9 # The presence of a machine in this file suggests that SOME GNU software
10 # can handle that machine. It does not imply ALL GNU software can.
12 # This file is free software; you can redistribute it and/or modify
13 # it under the terms of the GNU General Public License as published by
14 # the Free Software Foundation; either version 2 of the License, or
15 # (at your option) any later version.
17 # This program is distributed in the hope that it will be useful,
18 # but WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 # GNU General Public License for more details.
22 # You should have received a copy of the GNU General Public License
23 # along with this program; if not, write to the Free Software
24 # Foundation, Inc., 59 Temple Place - Suite 330,
25 # Boston, MA 02111-1307, USA.
27 # As a special exception to the GNU General Public License, if you
28 # distribute this file as part of a program that contains a
29 # configuration script generated by Autoconf, you may include it under
30 # the same distribution terms that you use for the rest of that program.
32 # Please send patches to <config-patches@gnu.org>.
34 # Configuration subroutine to validate and canonicalize a configuration type.
35 # Supply the specified configuration type as an argument.
36 # If it is invalid, we print an error message on stderr and exit with code 1.
37 # Otherwise, we print the canonical config type on stdout and succeed.
39 # This file is supposed to be the same for all GNU packages
40 # and recognize all the CPU types, system types and aliases
41 # that are meaningful with *any* GNU software.
42 # Each package is responsible for reporting which valid configurations
43 # it does not support. The user should be able to distinguish
44 # a failure to support a valid configuration from a meaningless
45 # configuration.
47 # The goal of this file is to map all the various variations of a given
48 # machine specification into a single specification in the form:
49 # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
50 # or in some cases, the newer four-part form:
51 # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
52 # It is wrong to echo any other type of specification.
54 me=`echo "$0" | sed -e 's,.*/,,'`
56 usage="\
57 Usage: $0 [OPTION] CPU-MFR-OPSYS
58 $0 [OPTION] ALIAS
60 Canonicalize a configuration name.
62 Operation modes:
63 -h, --help print this help, then exit
64 -t, --time-stamp print date of last modification, then exit
65 -v, --version print version number, then exit
67 Report bugs and patches to <config-patches@gnu.org>."
69 version="\
70 GNU config.sub ($timestamp)
72 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
73 Free Software Foundation, Inc.
75 This is free software; see the source for copying conditions. There is NO
76 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
78 help="
79 Try \`$me --help' for more information."
81 # Parse command line
82 while test $# -gt 0 ; do
83 case $1 in
84 --time-stamp | --time* | -t )
85 echo "$timestamp" ; exit 0 ;;
86 --version | -v )
87 echo "$version" ; exit 0 ;;
88 --help | --h* | -h )
89 echo "$usage"; exit 0 ;;
90 -- ) # Stop option processing
91 shift; break ;;
92 - ) # Use stdin as input.
93 break ;;
94 -* )
95 echo "$me: invalid option $1$help"
96 exit 1 ;;
98 *local*)
99 # First pass through any local machine types.
100 echo $1
101 exit 0;;
104 break ;;
105 esac
106 done
108 case $# in
109 0) echo "$me: missing argument$help" >&2
110 exit 1;;
111 1) ;;
112 *) echo "$me: too many arguments$help" >&2
113 exit 1;;
114 esac
116 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
117 # Here we must recognize all the valid KERNEL-OS combinations.
118 maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
119 case $maybe_os in
120 nto-qnx* | linux-gnu* | linux-aros* | storm-chaos* | os2-emx* | windows32-*)
121 os=-$maybe_os
122 basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
125 basic_machine=`echo $1 | sed 's/-[^-]*$//'`
126 if [ $basic_machine != $1 ]
127 then os=`echo $1 | sed 's/.*-/-/'`
128 else os=; fi
130 esac
132 ### Let's recognize common machines as not being operating systems so
133 ### that things like config.sub decstation-3100 work. We also
134 ### recognize some manufacturers as not being operating systems, so we
135 ### can provide default operating systems below.
136 case $os in
137 -sun*os*)
138 # Prevent following clause from handling this invalid input.
140 -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \
141 -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \
142 -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \
143 -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
144 -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
145 -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
146 -apple | -axis)
148 basic_machine=$1
150 -sim | -cisco | -oki | -wec | -winbond)
152 basic_machine=$1
154 -scout)
156 -wrs)
157 os=-vxworks
158 basic_machine=$1
160 -chorusos*)
161 os=-chorusos
162 basic_machine=$1
164 -chorusrdb)
165 os=-chorusrdb
166 basic_machine=$1
168 -hiux*)
169 os=-hiuxwe2
171 -sco5)
172 os=-sco3.2v5
173 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
175 -sco4)
176 os=-sco3.2v4
177 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
179 -sco3.2.[4-9]*)
180 os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
181 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
183 -sco3.2v[4-9]*)
184 # Don't forget version if it is 3.2v4 or newer.
185 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
187 -sco*)
188 os=-sco3.2v2
189 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
191 -udk*)
192 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
194 -isc)
195 os=-isc2.2
196 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
198 -clix*)
199 basic_machine=clipper-intergraph
201 -isc*)
202 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
204 -lynx*)
205 os=-lynxos
207 -ptx*)
208 basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`
210 -windowsnt*)
211 os=`echo $os | sed -e 's/windowsnt/winnt/'`
213 -psos*)
214 os=-psos
216 -mint | -mint[0-9]*)
217 basic_machine=m68k-atari
218 os=-mint
220 esac
222 # Decode aliases for certain CPU-COMPANY combinations.
223 case $basic_machine in
224 # Recognize the basic CPU types without company name.
225 # Some are omitted here because they have special meanings below.
226 1750a | 580 \
227 | a29k \
228 | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
229 | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \
230 | c4x | clipper \
231 | d10v | d30v | dsp16xx \
232 | fr30 \
233 | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
234 | i370 | i860 | i960 | ia64 \
235 | m32r | m68000 | m68k | m88k | mcore \
236 | mips16 | mips64 | mips64el | mips64orion | mips64orionel \
237 | mips64vr4100 | mips64vr4100el | mips64vr4300 \
238 | mips64vr4300el | mips64vr5000 | mips64vr5000el \
239 | mipsbe | mipseb | mipsel | mipsle | mipstx39 | mipstx39el \
240 | mipsisa32 \
241 | mn10200 | mn10300 \
242 | ns16k | ns32k \
243 | openrisc \
244 | pdp10 | pdp11 | pj | pjl \
245 | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \
246 | pyramid \
247 | s390 | s390x \
248 | sh | sh[34] | sh[34]eb | shbe | shle \
249 | sparc | sparc64 | sparclet | sparclite | sparcv9 | sparcv9b \
250 | stormy16 | strongarm \
251 | tahoe | thumb | tic80 | tron \
252 | v850 \
253 | we32k \
254 | x86 | xscale \
255 | z8k)
256 basic_machine=$basic_machine-unknown
258 m6811 | m68hc11 | m6812 | m68hc12)
259 # Motorola 68HC11/12.
260 basic_machine=$basic_machine-unknown
261 os=-none
263 m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k)
266 # We use `pc' rather than `unknown'
267 # because (1) that's what they normally are, and
268 # (2) the word "unknown" tends to confuse beginning users.
269 i*86 | x86_64 | i*86be )
270 basic_machine=$basic_machine-pc
272 # Object if more than one company name word.
273 *-*-*)
274 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
275 exit 1
277 # Recognize the basic CPU types with company name.
278 580-* \
279 | a29k-* \
280 | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \
281 | alphapca5[67]-* | arc-* \
282 | arm-* | armbe-* | armle-* | armv*-* \
283 | bs2000-* \
284 | c[123]* | c30-* | [cjt]90-* | c54x-* \
285 | clipper-* | cray2-* | cydra-* \
286 | d10v-* | d30v-* \
287 | elxsi-* \
288 | f30[01]-* | f700-* | fr30-* | fx80-* \
289 | h8300-* | h8500-* \
290 | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
291 | i*86-* | i860-* | i960-* | ia64-* \
292 | m32r-* \
293 | m68000-* | m680[01234]0-* | m68360-* | m683?2-* | m68k-* \
294 | m88110-* | m88k-* | mcore-* \
295 | mips-* | mips16-* | mips64-* | mips64el-* | mips64orion-* \
296 | mips64orionel-* | mips64vr4100-* | mips64vr4100el-* \
297 | mips64vr4300-* | mips64vr4300el-* | mipsbe-* | mipseb-* \
298 | mipsle-* | mipsel-* | mipstx39-* | mipstx39el-* \
299 | none-* | np1-* | ns16k-* | ns32k-* \
300 | orion-* \
301 | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
302 | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \
303 | pyramid-* \
304 | romp-* | rs6000-* \
305 | s390-* | s390x-* \
306 | sh-* | sh[34]-* | sh[34]eb-* | shbe-* | shle-* \
307 | sparc-* | sparc64-* | sparc86x-* | sparclite-* \
308 | sparcv9-* | sparcv9b-* | stormy16-* | strongarm-* | sv1-* \
309 | t3e-* | tahoe-* | thumb-* | tic30-* | tic54x-* | tic80-* | tron-* \
310 | v850-* | vax-* \
311 | we32k-* \
312 | x86-* | x86_64-* | xmp-* | xps100-* | xscale-* \
313 | ymp-* \
314 | z8k-*)
316 # Recognize the various machine names and aliases which stand
317 # for a CPU type and a company and sometimes even an OS.
318 386bsd)
319 basic_machine=i386-unknown
320 os=-bsd
322 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
323 basic_machine=m68000-att
325 3b*)
326 basic_machine=we32k-att
328 a29khif)
329 basic_machine=a29k-amd
330 os=-udi
332 adobe68k)
333 basic_machine=m68010-adobe
334 os=-scout
336 alliant | fx80)
337 basic_machine=fx80-alliant
339 altos | altos3068)
340 basic_machine=m68k-altos
342 am29k)
343 basic_machine=a29k-none
344 os=-bsd
346 amdahl)
347 basic_machine=580-amdahl
348 os=-sysv
350 amiga | amiga-*)
351 basic_machine=m68k-unknown
353 amigaos | amigados)
354 basic_machine=m68k-unknown
355 os=-amigaos
357 amigaunix | amix)
358 basic_machine=m68k-unknown
359 os=-sysv4
361 amithlon)
362 basic_machine=i386be-unknown
363 os=-amithlon
365 apollo68)
366 basic_machine=m68k-apollo
367 os=-sysv
369 apollo68bsd)
370 basic_machine=m68k-apollo
371 os=-bsd
373 aux)
374 basic_machine=m68k-apple
375 os=-aux
377 balance)
378 basic_machine=ns32k-sequent
379 os=-dynix
381 convex-c1)
382 basic_machine=c1-convex
383 os=-bsd
385 convex-c2)
386 basic_machine=c2-convex
387 os=-bsd
389 convex-c32)
390 basic_machine=c32-convex
391 os=-bsd
393 convex-c34)
394 basic_machine=c34-convex
395 os=-bsd
397 convex-c38)
398 basic_machine=c38-convex
399 os=-bsd
401 cray | ymp)
402 basic_machine=ymp-cray
403 os=-unicos
405 cray2)
406 basic_machine=cray2-cray
407 os=-unicos
409 [cjt]90)
410 basic_machine=${basic_machine}-cray
411 os=-unicos
413 crds | unos)
414 basic_machine=m68k-crds
416 cris | cris-* | etrax*)
417 basic_machine=cris-axis
419 da30 | da30-*)
420 basic_machine=m68k-da30
422 decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn)
423 basic_machine=mips-dec
425 delta | 3300 | motorola-3300 | motorola-delta \
426 | 3300-motorola | delta-motorola)
427 basic_machine=m68k-motorola
429 delta88)
430 basic_machine=m88k-motorola
431 os=-sysv3
433 dpx20 | dpx20-*)
434 basic_machine=rs6000-bull
435 os=-bosx
437 dpx2* | dpx2*-bull)
438 basic_machine=m68k-bull
439 os=-sysv3
441 ebmon29k)
442 basic_machine=a29k-amd
443 os=-ebmon
445 elxsi)
446 basic_machine=elxsi-elxsi
447 os=-bsd
449 encore | umax | mmax)
450 basic_machine=ns32k-encore
452 es1800 | OSE68k | ose68k | ose | OSE)
453 basic_machine=m68k-ericsson
454 os=-ose
456 fx2800)
457 basic_machine=i860-alliant
459 genix)
460 basic_machine=ns32k-ns
462 gmicro)
463 basic_machine=tron-gmicro
464 os=-sysv
466 go32)
467 basic_machine=i386-pc
468 os=-go32
470 h3050r* | hiux*)
471 basic_machine=hppa1.1-hitachi
472 os=-hiuxwe2
474 h8300hms)
475 basic_machine=h8300-hitachi
476 os=-hms
478 h8300xray)
479 basic_machine=h8300-hitachi
480 os=-xray
482 h8500hms)
483 basic_machine=h8500-hitachi
484 os=-hms
486 harris)
487 basic_machine=m88k-harris
488 os=-sysv3
490 hp300-*)
491 basic_machine=m68k-hp
493 hp300bsd)
494 basic_machine=m68k-hp
495 os=-bsd
497 hp300hpux)
498 basic_machine=m68k-hp
499 os=-hpux
501 hp3k9[0-9][0-9] | hp9[0-9][0-9])
502 basic_machine=hppa1.0-hp
504 hp9k2[0-9][0-9] | hp9k31[0-9])
505 basic_machine=m68000-hp
507 hp9k3[2-9][0-9])
508 basic_machine=m68k-hp
510 hp9k6[0-9][0-9] | hp6[0-9][0-9])
511 basic_machine=hppa1.0-hp
513 hp9k7[0-79][0-9] | hp7[0-79][0-9])
514 basic_machine=hppa1.1-hp
516 hp9k78[0-9] | hp78[0-9])
517 # FIXME: really hppa2.0-hp
518 basic_machine=hppa1.1-hp
520 hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893)
521 # FIXME: really hppa2.0-hp
522 basic_machine=hppa1.1-hp
524 hp9k8[0-9][13679] | hp8[0-9][13679])
525 basic_machine=hppa1.1-hp
527 hp9k8[0-9][0-9] | hp8[0-9][0-9])
528 basic_machine=hppa1.0-hp
530 hppa-next)
531 os=-nextstep3
533 hppaosf)
534 basic_machine=hppa1.1-hp
535 os=-osf
537 hppro)
538 basic_machine=hppa1.1-hp
539 os=-proelf
541 i370-ibm* | ibm*)
542 basic_machine=i370-ibm
544 # I'm not sure what "Sysv32" means. Should this be sysv3.2?
545 i*86v32)
546 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
547 os=-sysv32
549 i*86v4*)
550 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
551 os=-sysv4
553 i*86v)
554 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
555 os=-sysv
557 i*86sol2)
558 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
559 os=-solaris2
561 i386mach)
562 basic_machine=i386-mach
563 os=-mach
565 i386-vsta | vsta)
566 basic_machine=i386-unknown
567 os=-vsta
569 iris | iris4d)
570 basic_machine=mips-sgi
571 case $os in
572 -irix*)
575 os=-irix4
577 esac
579 isi68 | isi)
580 basic_machine=m68k-isi
581 os=-sysv
583 m88k-omron*)
584 basic_machine=m88k-omron
586 magnum | m3230)
587 basic_machine=mips-mips
588 os=-sysv
590 merlin)
591 basic_machine=ns32k-utek
592 os=-sysv
594 mingw32)
595 basic_machine=i386-pc
596 os=-mingw32
598 miniframe)
599 basic_machine=m68000-convergent
601 *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*)
602 basic_machine=m68k-atari
603 os=-mint
605 mipsel*-linux*)
606 basic_machine=mipsel-unknown
607 os=-linux-gnu
609 mips*-linux*)
610 basic_machine=mips-unknown
611 os=-linux-gnu
613 mips3*-*)
614 basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
616 mips3*)
617 basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
619 mmix*)
620 basic_machine=mmix-knuth
621 os=-mmixware
623 monitor)
624 basic_machine=m68k-rom68k
625 os=-coff
627 morphos)
628 basic_machine=powerpc-unknown
629 os=-morphos
631 msdos)
632 basic_machine=i386-pc
633 os=-msdos
635 mvs)
636 basic_machine=i370-ibm
637 os=-mvs
639 ncr3000)
640 basic_machine=i486-ncr
641 os=-sysv4
643 netbsd386)
644 basic_machine=i386-unknown
645 os=-netbsd
647 netwinder)
648 basic_machine=armv4l-rebel
649 os=-linux
651 news | news700 | news800 | news900)
652 basic_machine=m68k-sony
653 os=-newsos
655 news1000)
656 basic_machine=m68030-sony
657 os=-newsos
659 news-3600 | risc-news)
660 basic_machine=mips-sony
661 os=-newsos
663 necv70)
664 basic_machine=v70-nec
665 os=-sysv
667 next | m*-next )
668 basic_machine=m68k-next
669 case $os in
670 -nextstep* )
672 -ns2*)
673 os=-nextstep2
676 os=-nextstep3
678 esac
680 nh3000)
681 basic_machine=m68k-harris
682 os=-cxux
684 nh[45]000)
685 basic_machine=m88k-harris
686 os=-cxux
688 nindy960)
689 basic_machine=i960-intel
690 os=-nindy
692 mon960)
693 basic_machine=i960-intel
694 os=-mon960
696 nonstopux)
697 basic_machine=mips-compaq
698 os=-nonstopux
700 np1)
701 basic_machine=np1-gould
703 nsr-tandem)
704 basic_machine=nsr-tandem
706 op50n-* | op60c-*)
707 basic_machine=hppa1.1-oki
708 os=-proelf
710 OSE68000 | ose68000)
711 basic_machine=m68000-ericsson
712 os=-ose
714 os68k)
715 basic_machine=m68k-none
716 os=-os68k
718 pa-hitachi)
719 basic_machine=hppa1.1-hitachi
720 os=-hiuxwe2
722 paragon)
723 basic_machine=i860-intel
724 os=-osf
726 pbd)
727 basic_machine=sparc-tti
729 pbb)
730 basic_machine=m68k-tti
732 pc532 | pc532-*)
733 basic_machine=ns32k-pc532
735 pentium | p5 | k5 | k6 | nexgen)
736 basic_machine=i586-pc
738 pentiumpro | p6 | 6x86 | athlon)
739 basic_machine=i686-pc
741 pentiumii | pentium2)
742 basic_machine=i686-pc
744 pentium-* | p5-* | k5-* | k6-* | nexgen-*)
745 basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`
747 pentiumpro-* | p6-* | 6x86-* | athlon-*)
748 basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
750 pentiumii-* | pentium2-*)
751 basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
754 basic_machine=pn-gould
756 power) basic_machine=power-ibm
758 ppc) basic_machine=powerpc-unknown
760 ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
762 ppcle | powerpclittle | ppc-le | powerpc-little)
763 basic_machine=powerpcle-unknown
765 ppcle-* | powerpclittle-*)
766 basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'`
768 ppc64) basic_machine=powerpc64-unknown
770 ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'`
772 ppc64le | powerpc64little | ppc64-le | powerpc64-little)
773 basic_machine=powerpc64le-unknown
775 ppc64le-* | powerpc64little-*)
776 basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'`
778 ps2)
779 basic_machine=i386-ibm
781 pw32)
782 basic_machine=i586-unknown
783 os=-pw32
785 rom68k)
786 basic_machine=m68k-rom68k
787 os=-coff
789 rm[46]00)
790 basic_machine=mips-siemens
792 rtpc | rtpc-*)
793 basic_machine=romp-ibm
795 sa29200)
796 basic_machine=a29k-amd
797 os=-udi
799 sequent)
800 basic_machine=i386-sequent
803 basic_machine=sh-hitachi
804 os=-hms
806 sparclite-wrs)
807 basic_machine=sparclite-wrs
808 os=-vxworks
810 sps7)
811 basic_machine=m68k-bull
812 os=-sysv2
814 spur)
815 basic_machine=spur-unknown
817 st2000)
818 basic_machine=m68k-tandem
820 stratus)
821 basic_machine=i860-stratus
822 os=-sysv4
824 sun2)
825 basic_machine=m68000-sun
827 sun2os3)
828 basic_machine=m68000-sun
829 os=-sunos3
831 sun2os4)
832 basic_machine=m68000-sun
833 os=-sunos4
835 sun3os3)
836 basic_machine=m68k-sun
837 os=-sunos3
839 sun3os4)
840 basic_machine=m68k-sun
841 os=-sunos4
843 sun4os3)
844 basic_machine=sparc-sun
845 os=-sunos3
847 sun4os4)
848 basic_machine=sparc-sun
849 os=-sunos4
851 sun4sol2)
852 basic_machine=sparc-sun
853 os=-solaris2
855 sun3 | sun3-*)
856 basic_machine=m68k-sun
858 sun4)
859 basic_machine=sparc-sun
861 sun386 | sun386i | roadrunner)
862 basic_machine=i386-sun
864 sv1)
865 basic_machine=sv1-cray
866 os=-unicos
868 symmetry)
869 basic_machine=i386-sequent
870 os=-dynix
872 t3e)
873 basic_machine=t3e-cray
874 os=-unicos
876 tic54x | c54x*)
877 basic_machine=tic54x-unknown
878 os=-coff
880 tx39)
881 basic_machine=mipstx39-unknown
883 tx39el)
884 basic_machine=mipstx39el-unknown
886 tower | tower-32)
887 basic_machine=m68k-ncr
889 udi29k)
890 basic_machine=a29k-amd
891 os=-udi
893 ultra3)
894 basic_machine=a29k-nyu
895 os=-sym1
897 v810 | necv810)
898 basic_machine=v810-nec
899 os=-none
901 vaxv)
902 basic_machine=vax-dec
903 os=-sysv
905 vms)
906 basic_machine=vax-dec
907 os=-vms
909 vpp*|vx|vx-*)
910 basic_machine=f301-fujitsu
912 vxworks960)
913 basic_machine=i960-wrs
914 os=-vxworks
916 vxworks68)
917 basic_machine=m68k-wrs
918 os=-vxworks
920 vxworks29k)
921 basic_machine=a29k-wrs
922 os=-vxworks
924 w65*)
925 basic_machine=w65-wdc
926 os=-none
928 w89k-*)
929 basic_machine=hppa1.1-winbond
930 os=-proelf
932 windows32)
933 basic_machine=i386-pc
934 os=-windows32-msvcrt
936 xmp)
937 basic_machine=xmp-cray
938 os=-unicos
940 xps | xps100)
941 basic_machine=xps100-honeywell
943 z8k-*-coff)
944 basic_machine=z8k-unknown
945 os=-sim
947 none)
948 basic_machine=none-none
949 os=-none
952 # Here we handle the default manufacturer of certain CPU types. It is in
953 # some cases the only manufacturer, in others, it is the most popular.
954 w89k)
955 basic_machine=hppa1.1-winbond
957 op50n)
958 basic_machine=hppa1.1-oki
960 op60c)
961 basic_machine=hppa1.1-oki
963 mips)
964 if [ x$os = x-linux-gnu ]; then
965 basic_machine=mips-unknown
966 else
967 basic_machine=mips-mips
970 romp)
971 basic_machine=romp-ibm
973 rs6000)
974 basic_machine=rs6000-ibm
976 vax)
977 basic_machine=vax-dec
979 pdp10)
980 # there are many clones, so DEC is not a safe bet
981 basic_machine=pdp10-unknown
983 pdp11)
984 basic_machine=pdp11-dec
986 we32k)
987 basic_machine=we32k-att
989 sh3 | sh4 | sh3eb | sh4eb)
990 basic_machine=sh-unknown
992 sparc | sparcv9 | sparcv9b)
993 basic_machine=sparc-sun
995 cydra)
996 basic_machine=cydra-cydrome
998 orion)
999 basic_machine=orion-highlevel
1001 orion105)
1002 basic_machine=clipper-highlevel
1004 mac | mpw | mac-mpw)
1005 basic_machine=m68k-apple
1007 pmac | pmac-mpw)
1008 basic_machine=powerpc-apple
1010 c4x*)
1011 basic_machine=c4x-none
1012 os=-coff
1014 *-unknown)
1015 # Make sure to match an already-canonicalized machine name.
1018 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
1019 exit 1
1021 esac
1023 # Here we canonicalize certain aliases for manufacturers.
1024 case $basic_machine in
1025 *-digital*)
1026 basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
1028 *-commodore*)
1029 basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
1033 esac
1035 # Decode manufacturer-specific aliases for certain operating systems.
1037 if [ x"$os" != x"" ]
1038 then
1039 case $os in
1040 # First match some system type aliases
1041 # that might get confused with valid system types.
1042 # -solaris* is a basic system type, with this one exception.
1043 -solaris1 | -solaris1.*)
1044 os=`echo $os | sed -e 's|solaris1|sunos4|'`
1046 -solaris)
1047 os=-solaris2
1049 -svr4*)
1050 os=-sysv4
1052 -unixware*)
1053 os=-sysv4.2uw
1055 -gnu/linux*)
1056 os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
1058 # First accept the basic system types.
1059 # The portable systems comes first.
1060 # Each alternative MUST END IN A *, to match a version number.
1061 # -sysv* is not here because it comes later, after sysvr4.
1062 -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
1063 | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\
1064 | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \
1065 | -amigaos* | -amigados* | -morphos* | -amithlon \
1066 | -aros* | -linux-aros* \
1067 | -msdos* | -newsos* | -unicos* | -aof* | -aos* \
1068 | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
1069 | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
1070 | -hiux* | -386bsd* | -netbsd* | -openbsd* | -freebsd* | -riscix* \
1071 | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
1072 | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
1073 | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
1074 | -chorusos* | -chorusrdb* \
1075 | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
1076 | -mingw32* | -linux-gnu* | -uxpv* | -beos* | -mpeix* | -udk* \
1077 | -interix* | -uwin* | -rhapsody* | -darwin* | -opened* \
1078 | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
1079 | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \
1080 | -os2* | -vos*)
1081 # Remember, each alternative MUST END IN *, to match a version number.
1083 -qnx*)
1084 case $basic_machine in
1085 x86-* | i*86-*)
1088 os=-nto$os
1090 esac
1092 -nto*)
1093 os=-nto-qnx
1095 -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \
1096 | -windows* | -osx | -abug | -netware* | -os9* | -beos* \
1097 | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*)
1099 -mac*)
1100 os=`echo $os | sed -e 's|mac|macos|'`
1102 -linux*)
1103 os=`echo $os | sed -e 's|linux|linux-gnu|'`
1105 -sunos5*)
1106 os=`echo $os | sed -e 's|sunos5|solaris2|'`
1108 -sunos6*)
1109 os=`echo $os | sed -e 's|sunos6|solaris3|'`
1111 -opened*)
1112 os=-openedition
1114 -wince*)
1115 os=-wince
1117 -osfrose*)
1118 os=-osfrose
1120 -osf*)
1121 os=-osf
1123 -utek*)
1124 os=-bsd
1126 -dynix*)
1127 os=-bsd
1129 -acis*)
1130 os=-aos
1132 -386bsd)
1133 os=-bsd
1135 -ctix* | -uts*)
1136 os=-sysv
1138 -ns2 )
1139 os=-nextstep2
1141 -nsk*)
1142 os=-nsk
1144 # Preserve the version number of sinix5.
1145 -sinix5.*)
1146 os=`echo $os | sed -e 's|sinix|sysv|'`
1148 -sinix*)
1149 os=-sysv4
1151 -triton*)
1152 os=-sysv3
1154 -oss*)
1155 os=-sysv3
1157 -svr4)
1158 os=-sysv4
1160 -svr3)
1161 os=-sysv3
1163 -sysvr4)
1164 os=-sysv4
1166 # This must come after -sysvr4.
1167 -sysv*)
1169 -ose*)
1170 os=-ose
1172 -es1800*)
1173 os=-ose
1175 -xenix)
1176 os=-xenix
1178 -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
1179 os=-mint
1181 -none)
1184 # Get rid of the `-' at the beginning of $os.
1185 os=`echo $os | sed 's/[^-]*-//'`
1186 echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2
1187 exit 1
1189 esac
1190 else
1192 # Here we handle the default operating systems that come with various machines.
1193 # The value should be what the vendor currently ships out the door with their
1194 # machine or put another way, the most popular os provided with the machine.
1196 # Note that if you're going to try to match "-MANUFACTURER" here (say,
1197 # "-sun"), then you have to tell the case statement up towards the top
1198 # that MANUFACTURER isn't an operating system. Otherwise, code above
1199 # will signal an error saying that MANUFACTURER isn't an operating
1200 # system, and we'll never get to this point.
1202 case $basic_machine in
1203 *-acorn)
1204 os=-riscix1.2
1206 arm*-rebel)
1207 os=-linux
1209 arm*-semi)
1210 os=-aout
1212 pdp10-*)
1213 os=-tops20
1215 pdp11-*)
1216 os=-none
1218 *-dec | vax-*)
1219 os=-ultrix4.2
1221 m68*-apollo)
1222 os=-domain
1224 i386-sun)
1225 os=-sunos4.0.2
1227 m68000-sun)
1228 os=-sunos3
1229 # This also exists in the configure program, but was not the
1230 # default.
1231 # os=-sunos4
1233 m68*-cisco)
1234 os=-aout
1236 mips*-cisco)
1237 os=-elf
1239 mips*-*)
1240 os=-elf
1242 *-tti) # must be before sparc entry or we get the wrong os.
1243 os=-sysv3
1245 sparc-* | *-sun)
1246 os=-sunos4.1.1
1248 *-be)
1249 os=-beos
1251 *-ibm)
1252 os=-aix
1254 *-wec)
1255 os=-proelf
1257 *-winbond)
1258 os=-proelf
1260 *-oki)
1261 os=-proelf
1263 *-hp)
1264 os=-hpux
1266 *-hitachi)
1267 os=-hiux
1269 i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent)
1270 os=-sysv
1272 *-cbm)
1273 os=-amigaos
1275 *-dg)
1276 os=-dgux
1278 *-dolphin)
1279 os=-sysv3
1281 m68k-ccur)
1282 os=-rtu
1284 m88k-omron*)
1285 os=-luna
1287 *-next )
1288 os=-nextstep
1290 *-sequent)
1291 os=-ptx
1293 *-crds)
1294 os=-unos
1296 *-ns)
1297 os=-genix
1299 i370-*)
1300 os=-mvs
1302 *-next)
1303 os=-nextstep3
1305 *-gould)
1306 os=-sysv
1308 *-highlevel)
1309 os=-bsd
1311 *-encore)
1312 os=-bsd
1314 *-sgi)
1315 os=-irix
1317 *-siemens)
1318 os=-sysv4
1320 *-masscomp)
1321 os=-rtu
1323 f30[01]-fujitsu | f700-fujitsu)
1324 os=-uxpv
1326 *-rom68k)
1327 os=-coff
1329 *-*bug)
1330 os=-coff
1332 *-apple)
1333 os=-macos
1335 *-atari*)
1336 os=-mint
1339 os=-none
1341 esac
1344 # Here we handle the case where we know the os, and the CPU type, but not the
1345 # manufacturer. We pick the logical manufacturer.
1346 vendor=unknown
1347 case $basic_machine in
1348 *-unknown)
1349 case $os in
1350 -riscix*)
1351 vendor=acorn
1353 -sunos*)
1354 vendor=sun
1356 -aix*)
1357 vendor=ibm
1359 -beos*)
1360 vendor=be
1362 -hpux*)
1363 vendor=hp
1365 -mpeix*)
1366 vendor=hp
1368 -hiux*)
1369 vendor=hitachi
1371 -unos*)
1372 vendor=crds
1374 -dgux*)
1375 vendor=dg
1377 -luna*)
1378 vendor=omron
1380 -genix*)
1381 vendor=ns
1383 -mvs* | -opened*)
1384 vendor=ibm
1386 -ptx*)
1387 vendor=sequent
1389 -vxsim* | -vxworks*)
1390 vendor=wrs
1392 -aux*)
1393 vendor=apple
1395 -hms*)
1396 vendor=hitachi
1398 -mpw* | -macos*)
1399 vendor=apple
1401 -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
1402 vendor=atari
1404 -vos*)
1405 vendor=stratus
1407 esac
1408 basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
1410 esac
1412 echo $basic_machine$os
1413 exit 0
1415 # Local variables:
1416 # eval: (add-hook 'write-file-hooks 'time-stamp)
1417 # time-stamp-start: "timestamp='"
1418 # time-stamp-format: "%:y-%02m-%02d"
1419 # time-stamp-end: "'"
1420 # End: