2 # Configuration validation subroutine script, version 1.1.
3 # Copyright (C) 1991, 92, 93, 94, 95, 1996 Free Software Foundation, Inc.
4 # This file is (in principle) common to ALL GNU software.
5 # The presence of a machine in this file suggests that SOME GNU software
6 # can handle that machine. It does not imply ALL GNU software can.
8 # This file is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 59 Temple Place - Suite 330,
21 # Boston, MA 02111-1307, USA.
23 # As a special exception to the GNU General Public License, if you
24 # distribute this file as part of a program that contains a
25 # configuration script generated by Autoconf, you may include it under
26 # the same distribution terms that you use for the rest of that program.
28 # Configuration subroutine to validate and canonicalize a configuration type.
29 # Supply the specified configuration type as an argument.
30 # If it is invalid, we print an error message on stderr and exit with code 1.
31 # Otherwise, we print the canonical config type on stdout and succeed.
33 # This file is supposed to be the same for all GNU packages
34 # and recognize all the CPU types, system types and aliases
35 # that are meaningful with *any* GNU software.
36 # Each package is responsible for reporting which valid configurations
37 # it does not support. The user should be able to distinguish
38 # a failure to support a valid configuration from a meaningless
41 # The goal of this file is to map all the various variations of a given
42 # machine specification into a single specification in the form:
43 # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
44 # or in some cases, the newer four-part form:
45 # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
46 # It is wrong to echo any other type of specification.
50 echo Configuration name missing. 1>&2
51 echo "Usage: $0 CPU-MFR-OPSYS" 1>&2
52 echo "or $0 ALIAS" 1>&2
53 echo where ALIAS is a recognized configuration type. 1>&2
57 # First pass through any local machine types.
67 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
68 # Here we must recognize all the valid KERNEL-OS combinations.
69 maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
73 basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
76 basic_machine=`echo $1 | sed 's/-[^-]*$//'`
77 if [ $basic_machine != $1 ]
78 then os=`echo $1 | sed 's/.*-/-/'`
83 ### Let's recognize common machines as not being operating systems so
84 ### that things like config.sub decstation-3100 work. We also
85 ### recognize some manufacturers as not being operating systems, so we
86 ### can provide default operating systems below.
89 # Prevent following clause from handling this invalid input.
91 -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \
92 -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \
93 -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \
94 -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
95 -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
96 -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
101 -sim | -cisco | -oki | -wec | -winbond ) # CYGNUS LOCAL
105 -scout) # CYGNUS LOCAL
116 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
120 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
123 os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
124 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
127 # Don't forget version if it is 3.2v4 or newer.
128 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
132 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
136 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
139 basic_machine=clipper-intergraph
142 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
148 basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`
151 os=`echo $os | sed -e 's/windowsnt/winnt/'`
158 # Decode aliases for certain CPU-COMPANY combinations.
159 case $basic_machine in
160 # Recognize the basic CPU types without company name.
161 # Some are omitted here because they have special meanings below.
162 tahoe | i860 | m68k | m68000 | m88k | ns32k | arm \
163 | arme[lb] | pyramid \
164 | tron | a29k | 580 | i960 | h8300 | hppa | hppa1.0 | hppa1.1 \
165 | alpha | we32k | ns16k | clipper | i370 | sh \
166 | powerpc | powerpcle | 1750a | dsp16xx | mips64 | mipsel \
167 | pdp11 | mips64el | mips64orion | mips64orionel \
168 | sparc | sparclet | sparclite | sparc64)
169 basic_machine=$basic_machine-unknown
171 m88110 | m680[01234]0 | m683?2 | m68360 | z8k | v70 | h8500 | w65) # CYGNUS LOCAL
172 basic_machine=$basic_machine-unknown
174 mips64vr4300 | mips64vr4300el) # CYGNUS LOCAL jsmith/vr4300
175 basic_machine=$basic_machine-unknown
177 mips64vr4100 | mips64vr4100el) # CYGNUS LOCAL jsmith/vr4100
178 basic_machine=$basic_machine-unknown
180 mips64vr5000 | mips64vr5000el) # CYGNUS LOCAL ian/vr5000
181 basic_machine=$basic_machine-unknown
183 mips16) # CYGNUS LOCAL krk/mips16
184 basic_machine=$basic_machine-unknown
188 basic_machine=$basic_machine-unknown
191 basic_machine=$basic_machine-unknown
194 # start-sanitize-tic80
195 tic80) # CYGNUS LOCAL fnf/TIc80
196 basic_machine=$basic_machine-unknown
199 # start-sanitize-v850
200 v850) # CYGNUS LOCAL jtc/v850
201 basic_machine=$basic_machine-unknown
204 # start-sanitize-d10v
205 d10v) # CYGNUS LOCAL meissner/d10v
206 basic_machine=$basic_machine-unknown
209 # start-sanitize-m32r
211 basic_machine=$basic_machine-unknown
214 mn10200) # CYGNUS LOCAL
215 basic_machine=$basic_machine-unknown
217 mn10300) # CYGNUS LOCAL
218 basic_machine=$basic_machine-unknown
220 # We use `pc' rather than `unknown'
221 # because (1) that's what they normally are, and
222 # (2) the word "unknown" tends to confuse beginning users.
224 basic_machine=$basic_machine-pc
226 # Object if more than one company name word.
228 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
231 # Recognize the basic CPU types with company name.
232 vax-* | tahoe-* | i[3456]86-* | i860-* | m68k-* | m68000-* | m88k-* \
233 | sparc-* | ns32k-* | fx80-* | arm-* | c[123]* \
234 | mips-* | pyramid-* | tron-* | a29k-* | romp-* | rs6000-* | power-* \
235 | none-* | 580-* | cray2-* | h8300-* | i960-* | xmp-* | ymp-* \
236 | hppa-* | hppa1.0-* | hppa1.1-* | alpha-* | we32k-* | cydra-* | ns16k-* \
237 | pn-* | np1-* | xps100-* | clipper-* | orion-* | sparclite-* \
238 | pdp11-* | sh-* | powerpc-* | powerpcle-* | sparc64-* | mips64-* | mipsel-* \
239 | mips64el-* | mips64orion-* | mips64orionel-* | f301-*)
241 m88110-* | m680[01234]0-* | m683?2-* | m68360-* | z8k-* | h8500-* | v850-* | d10v-*) # CYGNUS LOCAL
243 mips64vr4300-* | mips64vr4300el-*) # CYGNUS LOCAL jsmith/vr4300
245 mips64vr4100-* | mips64vr4100el-*) # CYGNUS LOCAL jsmith/vr4100
247 mips16-*) # CYGNUS LOCAL krk/mips16
249 # start-sanitize-tic80
250 tic80-*) # CYGNUS LOCAL fnf/TIc80
253 # Recognize the various machine names and aliases which stand
254 # for a CPU type and a company and sometimes even an OS.
255 386bsd) # CYGNUS LOCAL
256 basic_machine=i386-unknown
259 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
260 basic_machine=m68000-att
263 basic_machine=we32k-att
265 a29khif) # CYGNUS LOCAL
266 basic_machine=a29k-amd
269 adobe68k) # CYGNUS LOCAL
270 basic_machine=m68010-adobe
274 basic_machine=fx80-alliant
277 basic_machine=m68k-altos
280 basic_machine=a29k-none
284 basic_machine=580-amdahl
288 basic_machine=m68k-cbm
291 basic_machine=m68k-cbm
295 basic_machine=m68k-cbm
299 basic_machine=m68k-apollo
302 apollo68bsd) # CYGNUS LOCAL
303 basic_machine=m68k-apollo
308 basic_machine=arc-unknown
310 arc-*) # CYGNUS LOCAL
314 basic_machine=m68k-apple
318 basic_machine=ns32k-sequent
322 basic_machine=c1-convex
326 basic_machine=c2-convex
330 basic_machine=c32-convex
334 basic_machine=c34-convex
338 basic_machine=c38-convex
342 basic_machine=ymp-cray
346 basic_machine=cray2-cray
350 basic_machine=c90-cray
354 basic_machine=m68k-crds
357 basic_machine=m68k-da30
359 decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn)
360 basic_machine=mips-dec
362 delta | 3300 | motorola-3300 | motorola-delta \
363 | 3300-motorola | delta-motorola)
364 basic_machine=m68k-motorola
367 basic_machine=m88k-motorola
371 basic_machine=rs6000-bull
375 basic_machine=m68k-bull
379 basic_machine=a29k-amd
383 basic_machine=elxsi-elxsi
386 encore | umax | mmax)
387 basic_machine=ns32k-encore
389 es1800 | OSE68k | ose68k | ose | OSE) # CYGNUS LOCAL
390 basic_machine=m68k-ericsson
394 basic_machine=i860-alliant
397 basic_machine=ns32k-ns
400 basic_machine=tron-gmicro
404 basic_machine=hppa1.1-hitachi
408 basic_machine=h8300-hitachi
411 h8300xray) # CYGNUS LOCAL
412 basic_machine=h8300-hitachi
415 h8500hms) # CYGNUS LOCAL
416 basic_machine=h8500-hitachi
420 basic_machine=m88k-harris
424 basic_machine=m68k-hp
427 basic_machine=m68k-hp
431 basic_machine=m68k-hp
434 w89k-*) # CYGNUS LOCAL
435 basic_machine=hppa1.1-winbond
438 op50n-*) # CYGNUS LOCAL
439 basic_machine=hppa1.1-oki
442 op60c-*) # CYGNUS LOCAL
443 basic_machine=hppa1.1-oki
446 hppro) # CYGNUS LOCAL
447 basic_machine=hppa1.1-hp
450 hp9k2[0-9][0-9] | hp9k31[0-9])
451 basic_machine=m68000-hp
454 basic_machine=m68k-hp
456 hp9k7[0-9][0-9] | hp7[0-9][0-9] | hp9k8[0-9]7 | hp8[0-9]7)
457 basic_machine=hppa1.1-hp
459 hp9k8[0-9][0-9] | hp8[0-9][0-9])
460 basic_machine=hppa1.0-hp
465 hppaosf) # CYGNUS LOCAL
466 basic_machine=hppa1.1-hp
470 basic_machine=i370-ibm
473 # I'm not sure what "Sysv32" means. Should this be sysv3.2?
475 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
479 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
483 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
487 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
490 i386mach) # CYGNUS LOCAL
491 basic_machine=i386-mach
494 i386-vsta | vsta) # CYGNUS LOCAL
495 basic_machine=i386-unknown
498 i386-go32 | go32) # CYGNUS LOCAL
499 basic_machine=i386-unknown
503 basic_machine=mips-sgi
513 basic_machine=m68k-isi
517 basic_machine=m88k-omron
520 basic_machine=mips-mips
524 basic_machine=ns32k-utek
528 basic_machine=m68000-convergent
531 basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
534 basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
536 monitor) # CYGNUS LOCAL
537 basic_machine=m68k-rom68k
540 msdos) # CYGNUS LOCAL
541 basic_machine=i386-unknown
545 basic_machine=i486-ncr
549 basic_machine=i386-unknown # CYGNUS LOCAL
552 news | news700 | news800 | news900)
553 basic_machine=m68k-sony
557 basic_machine=m68030-sony
560 news-3600 | risc-news)
561 basic_machine=mips-sony
564 necv70) # CYGNUS LOCAL
565 basic_machine=v70-nec
569 basic_machine=m68k-next
582 basic_machine=m68k-harris
586 basic_machine=m88k-harris
590 basic_machine=i960-intel
593 mon960) # CYGNUS LOCAL
594 basic_machine=i960-intel
598 basic_machine=np1-gould
600 OSE68000 | ose68000) # CYGNUS LOCAL
601 basic_machine=m68000-ericsson
604 os68k) # CYGNUS LOCAL
605 basic_machine=m68k-none
609 basic_machine=hppa1.1-hitachi
613 basic_machine=i860-intel
617 basic_machine=sparc-tti
620 basic_machine=m68k-tti
623 basic_machine=ns32k-pc532
626 basic_machine=i586-intel
629 basic_machine=i686-intel
632 basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`
635 basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
638 # We don't have specific support for AMD's K5 yet, so just call it a Pentium
639 basic_machine=i586-amd
642 # We don't have specific support for Nexgen yet, so just call it a Pentium
643 basic_machine=i586-nexgen
646 basic_machine=pn-gould
648 power) basic_machine=rs6000-ibm
650 ppc) basic_machine=powerpc-unknown
652 ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
654 ppcle | powerpclittle | ppc-le | powerpc-little)
655 basic_machine=powerpcle-unknown
657 ppcle-* | powerpclittle-*)
658 basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'`
661 basic_machine=i386-ibm
663 rom68k) # CYGNUS LOCAL
664 basic_machine=m68k-rom68k
668 basic_machine=mips-siemens
671 basic_machine=romp-ibm
673 sa29200) # CYGNUS LOCAL
674 basic_machine=a29k-amd
678 basic_machine=i386-sequent
681 basic_machine=sh-hitachi
684 sparclite-wrs) # CYGNUS LOCAL
685 basic_machine=sparclite-wrs
689 basic_machine=m68k-bull
693 basic_machine=spur-unknown
695 st2000) # CYGNUS LOCAL
696 basic_machine=m68k-tandem
698 stratus) # CYGNUS LOCAL
699 basic_machine=i860-stratus
703 basic_machine=m68000-sun
706 basic_machine=m68000-sun
710 basic_machine=m68000-sun
714 basic_machine=m68k-sun
718 basic_machine=m68k-sun
722 basic_machine=sparc-sun
726 basic_machine=sparc-sun
730 basic_machine=sparc-sun
734 basic_machine=m68k-sun
737 basic_machine=sparc-sun
739 sun386 | sun386i | roadrunner)
740 basic_machine=i386-sun
743 basic_machine=i386-sequent
747 basic_machine=m68k-ncr
750 basic_machine=a29k-amd
754 basic_machine=a29k-nyu
757 v810 | necv810) # CYGNUS LOCAL
758 basic_machine=v810-nec
762 basic_machine=vax-dec
766 basic_machine=vax-dec
770 basic_machine=f301-fujitsu
773 basic_machine=i960-wrs
777 basic_machine=m68k-wrs
781 basic_machine=a29k-wrs
785 basic_machine=w65-wdc
789 basic_machine=xmp-cray
793 basic_machine=xps100-honeywell
795 z8k-*-coff) # CYGNUS LOCAL
796 basic_machine=z8k-unknown
800 basic_machine=none-none
804 # Here we handle the default manufacturer of certain CPU types. It is in
805 # some cases the only manufacturer, in others, it is the most popular.
807 basic_machine=hppa1.1-winbond
809 op50n) # CYGNUS LOCAL
810 basic_machine=hppa1.1-oki
812 op60c) # CYGNUS LOCAL
813 basic_machine=hppa1.1-oki
816 basic_machine=mips-mips
819 basic_machine=romp-ibm
822 basic_machine=rs6000-ibm
825 basic_machine=vax-dec
828 basic_machine=pdp11-dec
831 basic_machine=we32k-att
834 basic_machine=sparc-sun
837 basic_machine=cydra-cydrome
840 basic_machine=orion-highlevel
843 basic_machine=clipper-highlevel
845 mac | mpw | mac-mpw) # CYGNUS LOCAL
846 basic_machine=m68k-apple
848 pmac | pmac-mpw) # CYGNUS LOCAL
849 basic_machine=powerpc-apple
852 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
857 # Here we canonicalize certain aliases for manufacturers.
858 case $basic_machine in
860 basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
863 basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
869 # Decode manufacturer-specific aliases for certain operating systems.
874 # First match some system type aliases
875 # that might get confused with valid system types.
876 # -solaris* is a basic system type, with this one exception.
877 -solaris1 | -solaris1.*)
878 os=`echo $os | sed -e 's|solaris1|sunos4|'`
887 os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
889 # First accept the basic system types.
890 # The portable systems comes first.
891 # Each alternative MUST END IN A *, to match a version number.
892 # -sysv* is not here because it comes later, after sysvr4.
893 -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
894 | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\
895 | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \
896 | -amigados* | -msdos* | -newsos* | -unicos* | -aof* | -aos* \
897 | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
898 | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
899 | -hiux* | -386bsd* | -netbsd* | -openbsd* | -freebsd* | -riscix* \
900 | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* \
901 | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
902 | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
903 | -cygwin32* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
904 | -linux-gnu* | -uxpv*)
905 # Remember, each alternative MUST END IN *, to match a version number.
908 -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \
909 | -windows* | -osx | -abug | -netware* | -os9* \
910 | -macos* | -mpw* | -magic* | -mon960*)
913 os=`echo $os | sed -e 's|mac|macos|'`
917 os=`echo $os | sed -e 's|linux|linux-gnu|'`
920 os=`echo $os | sed -e 's|sunos5|solaris2|'`
923 os=`echo $os | sed -e 's|sunos6|solaris3|'`
940 -386bsd) # CYGNUS LOCAL
949 # Preserve the version number of sinix5.
951 os=`echo $os | sed -e 's|sinix|sysv|'`
971 # This must come after -sysvr4.
974 -ose*) # CYGNUS LOCAL
977 -es1800*) # CYGNUS LOCAL
986 # Get rid of the `-' at the beginning of $os.
987 os=`echo $os | sed 's/[^-]*-//'`
988 echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2
994 # Here we handle the default operating systems that come with various machines.
995 # The value should be what the vendor currently ships out the door with their
996 # machine or put another way, the most popular os provided with the machine.
998 # Note that if you're going to try to match "-MANUFACTURER" here (say,
999 # "-sun"), then you have to tell the case statement up towards the top
1000 # that MANUFACTURER isn't an operating system. Otherwise, code above
1001 # will signal an error saying that MANUFACTURER isn't an operating
1002 # system, and we'll never get to this point.
1004 case $basic_machine in
1025 # This also exists in the configure program, but was not the
1029 m68*-cisco) # CYGNUS LOCAL
1032 mips*-cisco) # CYGNUS LOCAL
1035 *-tti) # must be before sparc entry or we get the wrong os.
1044 *-wec) # CYGNUS LOCAL
1047 *-winbond) # CYGNUS LOCAL
1050 *-oki) # CYGNUS LOCAL
1059 i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent)
1116 *-rom68k) # CYGNUS LOCAL
1119 *-*bug) # CYGNUS LOCAL
1122 *-apple) # CYGNUS LOCAL
1131 # Here we handle the case where we know the os, and the CPU type, but not the
1132 # manufacturer. We pick the logical manufacturer.
1134 case $basic_machine in
1170 -vxsim* | -vxworks*)
1176 -hms*) # CYGNUS LOCAL
1179 -mpw* | -macos*) # CYGNUS LOCAL
1183 basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
1187 echo $basic_machine$os