*** empty log message ***
[emacs.git] / config.sub
blob5d4bcc7fb4478ec1f7bbcaa6334e6b8c92ccf917
1 #! /bin/sh
2 # Configuration validation subroutine script.
3 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 # 2000, 2001, 2002 Free Software Foundation, Inc.
6 timestamp='2002-11-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>. Submit a context
33 # diff and a properly formatted ChangeLog entry.
35 # Configuration subroutine to validate and canonicalize a configuration type.
36 # Supply the specified configuration type as an argument.
37 # If it is invalid, we print an error message on stderr and exit with code 1.
38 # Otherwise, we print the canonical config type on stdout and succeed.
40 # This file is supposed to be the same for all GNU packages
41 # and recognize all the CPU types, system types and aliases
42 # that are meaningful with *any* GNU software.
43 # Each package is responsible for reporting which valid configurations
44 # it does not support. The user should be able to distinguish
45 # a failure to support a valid configuration from a meaningless
46 # configuration.
48 # The goal of this file is to map all the various variations of a given
49 # machine specification into a single specification in the form:
50 # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
51 # or in some cases, the newer four-part form:
52 # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
53 # It is wrong to echo any other type of specification.
55 me=`echo "$0" | sed -e 's,.*/,,'`
57 usage="\
58 Usage: $0 [OPTION] CPU-MFR-OPSYS
59 $0 [OPTION] ALIAS
61 Canonicalize a configuration name.
63 Operation modes:
64 -h, --help print this help, then exit
65 -t, --time-stamp print date of last modification, then exit
66 -v, --version print version number, then exit
68 Report bugs and patches to <config-patches@gnu.org>."
70 version="\
71 GNU config.sub ($timestamp)
73 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
74 Free Software Foundation, Inc.
76 This is free software; see the source for copying conditions. There is NO
77 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
79 help="
80 Try \`$me --help' for more information."
82 # Parse command line
83 while test $# -gt 0 ; do
84 case $1 in
85 --time-stamp | --time* | -t )
86 echo "$timestamp" ; exit 0 ;;
87 --version | -v )
88 echo "$version" ; exit 0 ;;
89 --help | --h* | -h )
90 echo "$usage"; exit 0 ;;
91 -- ) # Stop option processing
92 shift; break ;;
93 - ) # Use stdin as input.
94 break ;;
95 -* )
96 echo "$me: invalid option $1$help"
97 exit 1 ;;
99 *local*)
100 # First pass through any local machine types.
101 echo $1
102 exit 0;;
105 break ;;
106 esac
107 done
109 case $# in
110 0) echo "$me: missing argument$help" >&2
111 exit 1;;
112 1) ;;
113 *) echo "$me: too many arguments$help" >&2
114 exit 1;;
115 esac
117 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
118 # Here we must recognize all the valid KERNEL-OS combinations.
119 maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
120 case $maybe_os in
121 nto-qnx* | linux-gnu* | freebsd*-gnu* | storm-chaos* | os2-emx* | windows32-* | rtmk-nova*)
122 os=-$maybe_os
123 basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
126 basic_machine=`echo $1 | sed 's/-[^-]*$//'`
127 if [ $basic_machine != $1 ]
128 then os=`echo $1 | sed 's/.*-/-/'`
129 else os=; fi
131 esac
133 ### Let's recognize common machines as not being operating systems so
134 ### that things like config.sub decstation-3100 work. We also
135 ### recognize some manufacturers as not being operating systems, so we
136 ### can provide default operating systems below.
137 case $os in
138 -sun*os*)
139 # Prevent following clause from handling this invalid input.
141 -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \
142 -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \
143 -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \
144 -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
145 -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
146 -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
147 -apple | -axis)
149 basic_machine=$1
151 -sim | -cisco | -oki | -wec | -winbond)
153 basic_machine=$1
155 -scout)
157 -wrs)
158 os=-vxworks
159 basic_machine=$1
161 -chorusos*)
162 os=-chorusos
163 basic_machine=$1
165 -chorusrdb)
166 os=-chorusrdb
167 basic_machine=$1
169 -hiux*)
170 os=-hiuxwe2
172 -sco5)
173 os=-sco3.2v5
174 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
176 -sco4)
177 os=-sco3.2v4
178 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
180 -sco3.2.[4-9]*)
181 os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
182 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
184 -sco3.2v[4-9]*)
185 # Don't forget version if it is 3.2v4 or newer.
186 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
188 -sco*)
189 os=-sco3.2v2
190 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
192 -udk*)
193 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
195 -isc)
196 os=-isc2.2
197 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
199 -clix*)
200 basic_machine=clipper-intergraph
202 -isc*)
203 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
205 -lynx*)
206 os=-lynxos
208 -ptx*)
209 basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`
211 -windowsnt*)
212 os=`echo $os | sed -e 's/windowsnt/winnt/'`
214 -psos*)
215 os=-psos
217 -mint | -mint[0-9]*)
218 basic_machine=m68k-atari
219 os=-mint
221 esac
223 # Decode aliases for certain CPU-COMPANY combinations.
224 case $basic_machine in
225 # Recognize the basic CPU types without company name.
226 # Some are omitted here because they have special meanings below.
227 1750a | 580 \
228 | a29k \
229 | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
230 | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \
231 | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \
232 | clipper \
233 | d10v | d30v | dlx | dsp16xx \
234 | fr30 | frv \
235 | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
236 | i370 | i860 | i960 | ia64 \
237 | ip2k \
238 | m32r | m68000 | m68k | m88k | mcore \
239 | mips | mipsbe | mipseb | mipsel | mipsle \
240 | mips16 \
241 | mips64 | mips64el \
242 | mips64vr | mips64vrel \
243 | mips64orion | mips64orionel \
244 | mips64vr4100 | mips64vr4100el \
245 | mips64vr4300 | mips64vr4300el \
246 | mips64vr5000 | mips64vr5000el \
247 | mipsisa32 | mipsisa32el \
248 | mipsisa64 | mipsisa64el \
249 | mipsisa64sb1 | mipsisa64sb1el \
250 | mipsisa64sr71k | mipsisa64sr71kel \
251 | mipstx39 | mipstx39el \
252 | mn10200 | mn10300 \
253 | ns16k | ns32k \
254 | openrisc | or32 \
255 | pdp10 | pdp11 | pj | pjl \
256 | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \
257 | pyramid \
258 | sh | sh[1234] | sh3e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \
259 | sh64 | sh64le \
260 | sparc | sparc64 | sparc86x | sparclet | sparclite | sparcv9 | sparcv9b \
261 | strongarm \
262 | tahoe | thumb | tic80 | tron \
263 | v850 | v850e \
264 | we32k \
265 | x86 | xscale | xstormy16 | xtensa \
266 | z8k)
267 basic_machine=$basic_machine-unknown
269 m6811 | m68hc11 | m6812 | m68hc12)
270 # Motorola 68HC11/12.
271 basic_machine=$basic_machine-unknown
272 os=-none
274 m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k)
277 # We use `pc' rather than `unknown'
278 # because (1) that's what they normally are, and
279 # (2) the word "unknown" tends to confuse beginning users.
280 i*86 | x86_64)
281 basic_machine=$basic_machine-pc
283 # Object if more than one company name word.
284 *-*-*)
285 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
286 exit 1
288 # Recognize the basic CPU types with company name.
289 580-* \
290 | a29k-* \
291 | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \
292 | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
293 | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \
294 | arm-* | armbe-* | armle-* | armeb-* | armv*-* \
295 | avr-* \
296 | bs2000-* \
297 | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* \
298 | clipper-* | cydra-* \
299 | d10v-* | d30v-* | dlx-* \
300 | elxsi-* \
301 | f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \
302 | h8300-* | h8500-* \
303 | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
304 | i*86-* | i860-* | i960-* | ia64-* \
305 | ip2k-* \
306 | m32r-* \
307 | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
308 | m88110-* | m88k-* | mcore-* \
309 | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \
310 | mips16-* \
311 | mips64-* | mips64el-* \
312 | mips64vr-* | mips64vrel-* \
313 | mips64orion-* | mips64orionel-* \
314 | mips64vr4100-* | mips64vr4100el-* \
315 | mips64vr4300-* | mips64vr4300el-* \
316 | mips64vr5000-* | mips64vr5000el-* \
317 | mipsisa32-* | mipsisa32el-* \
318 | mipsisa64-* | mipsisa64el-* \
319 | mipsisa64sb1-* | mipsisa64sb1el-* \
320 | mipsisa64sr71k-* | mipsisa64sr71kel-* \
321 | mipstx39 | mipstx39el \
322 | none-* | np1-* | ns16k-* | ns32k-* \
323 | orion-* \
324 | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
325 | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \
326 | pyramid-* \
327 | romp-* | rs6000-* \
328 | sh-* | sh[1234]-* | sh3e-* | sh[34]eb-* | shbe-* \
329 | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
330 | sparc-* | sparc64-* | sparc86x-* | sparclet-* | sparclite-* \
331 | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \
332 | tahoe-* | thumb-* | tic30-* | tic4x-* | tic54x-* | tic80-* | tron-* \
333 | v850-* | v850e-* | vax-* \
334 | we32k-* \
335 | x86-* | x86_64-* | xps100-* | xscale-* | xstormy16-* \
336 | xtensa-* \
337 | ymp-* \
338 | z8k-*)
340 # Recognize the various machine names and aliases which stand
341 # for a CPU type and a company and sometimes even an OS.
342 386bsd)
343 basic_machine=i386-unknown
344 os=-bsd
346 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
347 basic_machine=m68000-att
349 3b*)
350 basic_machine=we32k-att
352 a29khif)
353 basic_machine=a29k-amd
354 os=-udi
356 adobe68k)
357 basic_machine=m68010-adobe
358 os=-scout
360 alliant | fx80)
361 basic_machine=fx80-alliant
363 altos | altos3068)
364 basic_machine=m68k-altos
366 am29k)
367 basic_machine=a29k-none
368 os=-bsd
370 amdahl)
371 basic_machine=580-amdahl
372 os=-sysv
374 amiga | amiga-*)
375 basic_machine=m68k-unknown
377 amigaos | amigados)
378 basic_machine=m68k-unknown
379 os=-amigaos
381 amigaunix | amix)
382 basic_machine=m68k-unknown
383 os=-sysv4
385 apollo68)
386 basic_machine=m68k-apollo
387 os=-sysv
389 apollo68bsd)
390 basic_machine=m68k-apollo
391 os=-bsd
393 aux)
394 basic_machine=m68k-apple
395 os=-aux
397 balance)
398 basic_machine=ns32k-sequent
399 os=-dynix
401 c90)
402 basic_machine=c90-cray
403 os=-unicos
405 convex-c1)
406 basic_machine=c1-convex
407 os=-bsd
409 convex-c2)
410 basic_machine=c2-convex
411 os=-bsd
413 convex-c32)
414 basic_machine=c32-convex
415 os=-bsd
417 convex-c34)
418 basic_machine=c34-convex
419 os=-bsd
421 convex-c38)
422 basic_machine=c38-convex
423 os=-bsd
425 cray | j90)
426 basic_machine=j90-cray
427 os=-unicos
429 crds | unos)
430 basic_machine=m68k-crds
432 cris | cris-* | etrax*)
433 basic_machine=cris-axis
435 da30 | da30-*)
436 basic_machine=m68k-da30
438 decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn)
439 basic_machine=mips-dec
441 decsystem10* | dec10*)
442 basic_machine=pdp10-dec
443 os=-tops10
445 decsystem20* | dec20*)
446 basic_machine=pdp10-dec
447 os=-tops20
449 delta88)
450 basic_machine=m88k-motorola
451 os=-sysv3
453 dpx20 | dpx20-*)
454 basic_machine=rs6000-bull
455 os=-bosx
457 dpx2* | dpx2*-bull)
458 basic_machine=m68k-bull
459 os=-sysv3
461 ebmon29k)
462 basic_machine=a29k-amd
463 os=-ebmon
465 elxsi)
466 basic_machine=elxsi-elxsi
467 os=-bsd
469 encore | umax | mmax)
470 basic_machine=ns32k-encore
472 es1800 | OSE68k | ose68k | ose | OSE)
473 basic_machine=m68k-ericsson
474 os=-ose
476 fx2800)
477 basic_machine=i860-alliant
479 genix)
480 basic_machine=ns32k-ns
482 gmicro)
483 basic_machine=tron-gmicro
484 os=-sysv
486 go32)
487 basic_machine=i386-pc
488 os=-go32
490 h3050r* | hiux*)
491 basic_machine=hppa1.1-hitachi
492 os=-hiuxwe2
494 h8300hms)
495 basic_machine=h8300-hitachi
496 os=-hms
498 h8300xray)
499 basic_machine=h8300-hitachi
500 os=-xray
502 h8500hms)
503 basic_machine=h8500-hitachi
504 os=-hms
506 harris)
507 basic_machine=m88k-harris
508 os=-sysv3
510 hp300-*)
511 basic_machine=m68k-hp
513 hp300bsd)
514 basic_machine=m68k-hp
515 os=-bsd
517 hp300hpux)
518 basic_machine=m68k-hp
519 os=-hpux
521 hp3k9[0-9][0-9] | hp9[0-9][0-9])
522 basic_machine=hppa1.0-hp
524 hp9k2[0-9][0-9] | hp9k31[0-9])
525 basic_machine=m68000-hp
527 hp9k3[2-9][0-9])
528 basic_machine=m68k-hp
530 hp9k6[0-9][0-9] | hp6[0-9][0-9])
531 basic_machine=hppa1.0-hp
533 hp9k7[0-79][0-9] | hp7[0-79][0-9])
534 basic_machine=hppa1.1-hp
536 hp9k78[0-9] | hp78[0-9])
537 # FIXME: really hppa2.0-hp
538 basic_machine=hppa1.1-hp
540 hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893)
541 # FIXME: really hppa2.0-hp
542 basic_machine=hppa1.1-hp
544 hp9k8[0-9][13679] | hp8[0-9][13679])
545 basic_machine=hppa1.1-hp
547 hp9k8[0-9][0-9] | hp8[0-9][0-9])
548 basic_machine=hppa1.0-hp
550 hppa-next)
551 os=-nextstep3
553 hppaosf)
554 basic_machine=hppa1.1-hp
555 os=-osf
557 hppro)
558 basic_machine=hppa1.1-hp
559 os=-proelf
561 i370-ibm* | ibm*)
562 basic_machine=i370-ibm
564 # I'm not sure what "Sysv32" means. Should this be sysv3.2?
565 i*86v32)
566 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
567 os=-sysv32
569 i*86v4*)
570 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
571 os=-sysv4
573 i*86v)
574 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
575 os=-sysv
577 i*86sol2)
578 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
579 os=-solaris2
581 i386mach)
582 basic_machine=i386-mach
583 os=-mach
585 i386-vsta | vsta)
586 basic_machine=i386-unknown
587 os=-vsta
589 iris | iris4d)
590 basic_machine=mips-sgi
591 case $os in
592 -irix*)
595 os=-irix4
597 esac
599 isi68 | isi)
600 basic_machine=m68k-isi
601 os=-sysv
603 m88k-omron*)
604 basic_machine=m88k-omron
606 magnum | m3230)
607 basic_machine=mips-mips
608 os=-sysv
610 merlin)
611 basic_machine=ns32k-utek
612 os=-sysv
614 mingw32)
615 basic_machine=i386-pc
616 os=-mingw32
618 miniframe)
619 basic_machine=m68000-convergent
621 *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*)
622 basic_machine=m68k-atari
623 os=-mint
625 mips3*-*)
626 basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
628 mips3*)
629 basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
631 mmix*)
632 basic_machine=mmix-knuth
633 os=-mmixware
635 monitor)
636 basic_machine=m68k-rom68k
637 os=-coff
639 morphos)
640 basic_machine=powerpc-unknown
641 os=-morphos
643 msdos)
644 basic_machine=i386-pc
645 os=-msdos
647 mvs)
648 basic_machine=i370-ibm
649 os=-mvs
651 ncr3000)
652 basic_machine=i486-ncr
653 os=-sysv4
655 netbsd386)
656 basic_machine=i386-unknown
657 os=-netbsd
659 netwinder)
660 basic_machine=armv4l-rebel
661 os=-linux
663 news | news700 | news800 | news900)
664 basic_machine=m68k-sony
665 os=-newsos
667 news1000)
668 basic_machine=m68030-sony
669 os=-newsos
671 news-3600 | risc-news)
672 basic_machine=mips-sony
673 os=-newsos
675 necv70)
676 basic_machine=v70-nec
677 os=-sysv
679 next | m*-next )
680 basic_machine=m68k-next
681 case $os in
682 -nextstep* )
684 -ns2*)
685 os=-nextstep2
688 os=-nextstep3
690 esac
692 nh3000)
693 basic_machine=m68k-harris
694 os=-cxux
696 nh[45]000)
697 basic_machine=m88k-harris
698 os=-cxux
700 nindy960)
701 basic_machine=i960-intel
702 os=-nindy
704 mon960)
705 basic_machine=i960-intel
706 os=-mon960
708 nonstopux)
709 basic_machine=mips-compaq
710 os=-nonstopux
712 np1)
713 basic_machine=np1-gould
715 nsr-tandem)
716 basic_machine=nsr-tandem
718 op50n-* | op60c-*)
719 basic_machine=hppa1.1-oki
720 os=-proelf
722 or32 | or32-*)
723 basic_machine=or32-unknown
724 os=-coff
726 OSE68000 | ose68000)
727 basic_machine=m68000-ericsson
728 os=-ose
730 os68k)
731 basic_machine=m68k-none
732 os=-os68k
734 pa-hitachi)
735 basic_machine=hppa1.1-hitachi
736 os=-hiuxwe2
738 paragon)
739 basic_machine=i860-intel
740 os=-osf
742 pbd)
743 basic_machine=sparc-tti
745 pbb)
746 basic_machine=m68k-tti
748 pc532 | pc532-*)
749 basic_machine=ns32k-pc532
751 pentium | p5 | k5 | k6 | nexgen | viac3)
752 basic_machine=i586-pc
754 pentiumpro | p6 | 6x86 | athlon | athlon_*)
755 basic_machine=i686-pc
757 pentiumii | pentium2)
758 basic_machine=i686-pc
760 pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
761 basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`
763 pentiumpro-* | p6-* | 6x86-* | athlon-*)
764 basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
766 pentiumii-* | pentium2-*)
767 basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
770 basic_machine=pn-gould
772 power) basic_machine=power-ibm
774 ppc) basic_machine=powerpc-unknown
776 ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
778 ppcle | powerpclittle | ppc-le | powerpc-little)
779 basic_machine=powerpcle-unknown
781 ppcle-* | powerpclittle-*)
782 basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'`
784 ppc64) basic_machine=powerpc64-unknown
786 ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'`
788 ppc64le | powerpc64little | ppc64-le | powerpc64-little)
789 basic_machine=powerpc64le-unknown
791 ppc64le-* | powerpc64little-*)
792 basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'`
794 ps2)
795 basic_machine=i386-ibm
797 pw32)
798 basic_machine=i586-unknown
799 os=-pw32
801 rom68k)
802 basic_machine=m68k-rom68k
803 os=-coff
805 rm[46]00)
806 basic_machine=mips-siemens
808 rtpc | rtpc-*)
809 basic_machine=romp-ibm
811 s390 | s390-*)
812 basic_machine=s390-ibm
814 s390x | s390x-*)
815 basic_machine=s390x-ibm
817 sa29200)
818 basic_machine=a29k-amd
819 os=-udi
821 sb1)
822 basic_machine=mipsisa64sb1-unknown
824 sb1el)
825 basic_machine=mipsisa64sb1el-unknown
827 sequent)
828 basic_machine=i386-sequent
831 basic_machine=sh-hitachi
832 os=-hms
834 sparclite-wrs | simso-wrs)
835 basic_machine=sparclite-wrs
836 os=-vxworks
838 sps7)
839 basic_machine=m68k-bull
840 os=-sysv2
842 spur)
843 basic_machine=spur-unknown
845 st2000)
846 basic_machine=m68k-tandem
848 stratus)
849 basic_machine=i860-stratus
850 os=-sysv4
852 sun2)
853 basic_machine=m68000-sun
855 sun2os3)
856 basic_machine=m68000-sun
857 os=-sunos3
859 sun2os4)
860 basic_machine=m68000-sun
861 os=-sunos4
863 sun3os3)
864 basic_machine=m68k-sun
865 os=-sunos3
867 sun3os4)
868 basic_machine=m68k-sun
869 os=-sunos4
871 sun4os3)
872 basic_machine=sparc-sun
873 os=-sunos3
875 sun4os4)
876 basic_machine=sparc-sun
877 os=-sunos4
879 sun4sol2)
880 basic_machine=sparc-sun
881 os=-solaris2
883 sun3 | sun3-*)
884 basic_machine=m68k-sun
886 sun4)
887 basic_machine=sparc-sun
889 sun386 | sun386i | roadrunner)
890 basic_machine=i386-sun
892 sv1)
893 basic_machine=sv1-cray
894 os=-unicos
896 symmetry)
897 basic_machine=i386-sequent
898 os=-dynix
900 t3d)
901 basic_machine=alpha-cray
902 os=-unicos
904 t3e)
905 basic_machine=alphaev5-cray
906 os=-unicos
908 t90)
909 basic_machine=t90-cray
910 os=-unicos
912 tic4x | c4x*)
913 basic_machine=tic4x-unknown
914 os=-coff
916 tic54x | c54x*)
917 basic_machine=tic54x-unknown
918 os=-coff
920 tx39)
921 basic_machine=mipstx39-unknown
923 tx39el)
924 basic_machine=mipstx39el-unknown
926 toad1)
927 basic_machine=pdp10-xkl
928 os=-tops20
930 tower | tower-32)
931 basic_machine=m68k-ncr
933 udi29k)
934 basic_machine=a29k-amd
935 os=-udi
937 ultra3)
938 basic_machine=a29k-nyu
939 os=-sym1
941 v810 | necv810)
942 basic_machine=v810-nec
943 os=-none
945 vaxv)
946 basic_machine=vax-dec
947 os=-sysv
949 vms)
950 basic_machine=vax-dec
951 os=-vms
953 vpp*|vx|vx-*)
954 basic_machine=f301-fujitsu
956 vxworks960)
957 basic_machine=i960-wrs
958 os=-vxworks
960 vxworks68)
961 basic_machine=m68k-wrs
962 os=-vxworks
964 vxworks29k)
965 basic_machine=a29k-wrs
966 os=-vxworks
968 w65*)
969 basic_machine=w65-wdc
970 os=-none
972 w89k-*)
973 basic_machine=hppa1.1-winbond
974 os=-proelf
976 xps | xps100)
977 basic_machine=xps100-honeywell
979 ymp)
980 basic_machine=ymp-cray
981 os=-unicos
983 z8k-*-coff)
984 basic_machine=z8k-unknown
985 os=-sim
987 none)
988 basic_machine=none-none
989 os=-none
992 # Here we handle the default manufacturer of certain CPU types. It is in
993 # some cases the only manufacturer, in others, it is the most popular.
994 w89k)
995 basic_machine=hppa1.1-winbond
997 op50n)
998 basic_machine=hppa1.1-oki
1000 op60c)
1001 basic_machine=hppa1.1-oki
1003 romp)
1004 basic_machine=romp-ibm
1006 rs6000)
1007 basic_machine=rs6000-ibm
1009 vax)
1010 basic_machine=vax-dec
1012 pdp10)
1013 # there are many clones, so DEC is not a safe bet
1014 basic_machine=pdp10-unknown
1016 pdp11)
1017 basic_machine=pdp11-dec
1019 we32k)
1020 basic_machine=we32k-att
1022 sh3 | sh4 | sh3eb | sh4eb | sh[1234]le | sh3ele)
1023 basic_machine=sh-unknown
1025 sh64)
1026 basic_machine=sh64-unknown
1028 sparc | sparcv9 | sparcv9b)
1029 basic_machine=sparc-sun
1031 cydra)
1032 basic_machine=cydra-cydrome
1034 orion)
1035 basic_machine=orion-highlevel
1037 orion105)
1038 basic_machine=clipper-highlevel
1040 mac | mpw | mac-mpw)
1041 basic_machine=m68k-apple
1043 pmac | pmac-mpw)
1044 basic_machine=powerpc-apple
1046 *-unknown)
1047 # Make sure to match an already-canonicalized machine name.
1050 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
1051 exit 1
1053 esac
1055 # Here we canonicalize certain aliases for manufacturers.
1056 case $basic_machine in
1057 *-digital*)
1058 basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
1060 *-commodore*)
1061 basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
1065 esac
1067 # Decode manufacturer-specific aliases for certain operating systems.
1069 if [ x"$os" != x"" ]
1070 then
1071 case $os in
1072 # First match some system type aliases
1073 # that might get confused with valid system types.
1074 # -solaris* is a basic system type, with this one exception.
1075 -solaris1 | -solaris1.*)
1076 os=`echo $os | sed -e 's|solaris1|sunos4|'`
1078 -solaris)
1079 os=-solaris2
1081 -svr4*)
1082 os=-sysv4
1084 -unixware*)
1085 os=-sysv4.2uw
1087 -gnu/linux*)
1088 os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
1090 # First accept the basic system types.
1091 # The portable systems comes first.
1092 # Each alternative MUST END IN A *, to match a version number.
1093 # -sysv* is not here because it comes later, after sysvr4.
1094 -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
1095 | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\
1096 | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \
1097 | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \
1098 | -aos* \
1099 | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
1100 | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
1101 | -hiux* | -386bsd* | -netbsd* | -openbsd* | -freebsd* | -riscix* \
1102 | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
1103 | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
1104 | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
1105 | -chorusos* | -chorusrdb* \
1106 | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
1107 | -mingw32* | -linux-gnu* | -uxpv* | -beos* | -mpeix* | -udk* \
1108 | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
1109 | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
1110 | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \
1111 | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
1112 | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
1113 | -powermax* | -dnix*)
1114 # Remember, each alternative MUST END IN *, to match a version number.
1116 -qnx*)
1117 case $basic_machine in
1118 x86-* | i*86-*)
1121 os=-nto$os
1123 esac
1125 -nto*)
1126 os=-nto-qnx
1128 -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \
1129 | -windows* | -osx | -abug | -netware* | -os9* | -beos* \
1130 | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*)
1132 -mac*)
1133 os=`echo $os | sed -e 's|mac|macos|'`
1135 -linux*)
1136 os=`echo $os | sed -e 's|linux|linux-gnu|'`
1138 -sunos5*)
1139 os=`echo $os | sed -e 's|sunos5|solaris2|'`
1141 -sunos6*)
1142 os=`echo $os | sed -e 's|sunos6|solaris3|'`
1144 -opened*)
1145 os=-openedition
1147 -wince*)
1148 os=-wince
1150 -osfrose*)
1151 os=-osfrose
1153 -osf*)
1154 os=-osf
1156 -utek*)
1157 os=-bsd
1159 -dynix*)
1160 os=-bsd
1162 -acis*)
1163 os=-aos
1165 -atheos*)
1166 os=-atheos
1168 -386bsd)
1169 os=-bsd
1171 -ctix* | -uts*)
1172 os=-sysv
1174 -nova*)
1175 os=-rtmk-nova
1177 -ns2 )
1178 os=-nextstep2
1180 -nsk*)
1181 os=-nsk
1183 # Preserve the version number of sinix5.
1184 -sinix5.*)
1185 os=`echo $os | sed -e 's|sinix|sysv|'`
1187 -sinix*)
1188 os=-sysv4
1190 -triton*)
1191 os=-sysv3
1193 -oss*)
1194 os=-sysv3
1196 -svr4)
1197 os=-sysv4
1199 -svr3)
1200 os=-sysv3
1202 -sysvr4)
1203 os=-sysv4
1205 # This must come after -sysvr4.
1206 -sysv*)
1208 -ose*)
1209 os=-ose
1211 -es1800*)
1212 os=-ose
1214 -xenix)
1215 os=-xenix
1217 -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
1218 os=-mint
1220 -none)
1223 # Get rid of the `-' at the beginning of $os.
1224 os=`echo $os | sed 's/[^-]*-//'`
1225 echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2
1226 exit 1
1228 esac
1229 else
1231 # Here we handle the default operating systems that come with various machines.
1232 # The value should be what the vendor currently ships out the door with their
1233 # machine or put another way, the most popular os provided with the machine.
1235 # Note that if you're going to try to match "-MANUFACTURER" here (say,
1236 # "-sun"), then you have to tell the case statement up towards the top
1237 # that MANUFACTURER isn't an operating system. Otherwise, code above
1238 # will signal an error saying that MANUFACTURER isn't an operating
1239 # system, and we'll never get to this point.
1241 case $basic_machine in
1242 *-acorn)
1243 os=-riscix1.2
1245 arm*-rebel)
1246 os=-linux
1248 arm*-semi)
1249 os=-aout
1251 # This must come before the *-dec entry.
1252 pdp10-*)
1253 os=-tops20
1255 pdp11-*)
1256 os=-none
1258 *-dec | vax-*)
1259 os=-ultrix4.2
1261 m68*-apollo)
1262 os=-domain
1264 i386-sun)
1265 os=-sunos4.0.2
1267 m68000-sun)
1268 os=-sunos3
1269 # This also exists in the configure program, but was not the
1270 # default.
1271 # os=-sunos4
1273 m68*-cisco)
1274 os=-aout
1276 mips*-cisco)
1277 os=-elf
1279 mips*-*)
1280 os=-elf
1282 or32-*)
1283 os=-coff
1285 *-tti) # must be before sparc entry or we get the wrong os.
1286 os=-sysv3
1288 sparc-* | *-sun)
1289 os=-sunos4.1.1
1291 *-be)
1292 os=-beos
1294 *-ibm)
1295 os=-aix
1297 *-wec)
1298 os=-proelf
1300 *-winbond)
1301 os=-proelf
1303 *-oki)
1304 os=-proelf
1306 *-hp)
1307 os=-hpux
1309 *-hitachi)
1310 os=-hiux
1312 i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent)
1313 os=-sysv
1315 *-cbm)
1316 os=-amigaos
1318 *-dg)
1319 os=-dgux
1321 *-dolphin)
1322 os=-sysv3
1324 m68k-ccur)
1325 os=-rtu
1327 m88k-omron*)
1328 os=-luna
1330 *-next )
1331 os=-nextstep
1333 *-sequent)
1334 os=-ptx
1336 *-crds)
1337 os=-unos
1339 *-ns)
1340 os=-genix
1342 i370-*)
1343 os=-mvs
1345 *-next)
1346 os=-nextstep3
1348 *-gould)
1349 os=-sysv
1351 *-highlevel)
1352 os=-bsd
1354 *-encore)
1355 os=-bsd
1357 *-sgi)
1358 os=-irix
1360 *-siemens)
1361 os=-sysv4
1363 *-masscomp)
1364 os=-rtu
1366 f30[01]-fujitsu | f700-fujitsu)
1367 os=-uxpv
1369 *-rom68k)
1370 os=-coff
1372 *-*bug)
1373 os=-coff
1375 *-apple)
1376 os=-macos
1378 *-atari*)
1379 os=-mint
1382 os=-none
1384 esac
1387 # Here we handle the case where we know the os, and the CPU type, but not the
1388 # manufacturer. We pick the logical manufacturer.
1389 vendor=unknown
1390 case $basic_machine in
1391 *-unknown)
1392 case $os in
1393 -riscix*)
1394 vendor=acorn
1396 -sunos*)
1397 vendor=sun
1399 -aix*)
1400 vendor=ibm
1402 -beos*)
1403 vendor=be
1405 -hpux*)
1406 vendor=hp
1408 -mpeix*)
1409 vendor=hp
1411 -hiux*)
1412 vendor=hitachi
1414 -unos*)
1415 vendor=crds
1417 -dgux*)
1418 vendor=dg
1420 -luna*)
1421 vendor=omron
1423 -genix*)
1424 vendor=ns
1426 -mvs* | -opened*)
1427 vendor=ibm
1429 -ptx*)
1430 vendor=sequent
1432 -vxsim* | -vxworks* | -windiss*)
1433 vendor=wrs
1435 -aux*)
1436 vendor=apple
1438 -hms*)
1439 vendor=hitachi
1441 -mpw* | -macos*)
1442 vendor=apple
1444 -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
1445 vendor=atari
1447 -vos*)
1448 vendor=stratus
1450 esac
1451 basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
1453 esac
1455 echo $basic_machine$os
1456 exit 0
1458 # Local variables:
1459 # eval: (add-hook 'write-file-hooks 'time-stamp)
1460 # time-stamp-start: "timestamp='"
1461 # time-stamp-format: "%:y-%02m-%02d"
1462 # time-stamp-end: "'"
1463 # End: