3 # Configuration subroutine to validate and canonicalize a configuration type.
4 # Supply the specified configuration type as an argument.
5 # If it is invalid, we print an error message on stderr and exit with code 1.
6 # Otherwise, we print the canonical config type on stdout and succeed.
8 # This file is supposed to be the same for all GNU packages
9 # and recognize all the CPU types, system types and aliases
10 # that are meaningful with *any* GNU software.
11 # Each package is responsible for reporting which valid configurations
12 # it does not support. The user should be able to distinguish
13 # a failure to support a valid configuration from a meaningless
14 # configuration (e.g. a typo).
16 # Please email any bugs, comments, and/or additions to this file to:
19 # decode aliases into canonical names
20 # Note that aliases MUST fit into 12 characters or less otherwise the
21 # install targets and subdir builds all die on machines that support
22 # only 14 char file names. They die miserably on machines that rudely
23 # enforce the 14 character limit.
26 # cpu alone is a valid alias for cpu-none-none.
27 vax | tahoe | i386 | i860 | m68k | m68000 | m88k | sparc | ns32k \
28 | alliant | arm | c1 | c2 | mips | pyramid | tron | a29k \
29 | romp | i960 | h8300)
57 os=amigados # Native AmigaDOS
62 os=svr4 # System V Release 4 (svr4 is an industry recognized acronym)
94 dec3100 | decstatn | decstation | decstation-3100 | pmax | pmin)
99 delta | 3300 | motorola-3300 | motorola-delta \
100 | 3300-motorola | delta-motorola)
135 # start-sanitize-life
159 sparc64-v7 | sparc64v7)
170 hp300hpux | hpux | hp9k3[2-9][0-9])
175 hp9k31[0-9] | hp9k2[0-9][0-9])
236 news | news700 | news800 | news900)
239 os=newsos # newsos3c or newsos4c, c stands for cisc. Based on bsd-4.3.
246 news-3600 | bigmips | risc-news)
249 os=newsos # Presumably newsos4r, r stands for risc. Based on bsd-4.3.
326 sun386 | roadrunner | sun386i)
366 unixpc | safari | pc7300 | 3b1 | 7300 | 7300-att | att-7300)
391 # not an alias. parse what we expect to be a canonical name.
393 cpu=`echo $1 | sed 's/-.*$//'`
395 if [ "${cpu}" = "$1" ] ; then
396 # no vendor so this is an invalid name.
397 echo '***' Configuration \"$1\" not recognized 1>&2
401 rest=`echo $1 | sed "s/${cpu}-//"`
402 vendor=`echo ${rest} | sed 's/-.*$//'`
404 if [ "${vendor}" = "${rest}" ] ; then
405 # a missing os is acceptable
408 os=`echo ${rest} | sed "s/${vendor}-//"`
414 # At this point we should have three parts of a canonical name in cpu,
417 # verify that the cpu is known.
420 none | vax | tahoe | i386 | i860 | m68k | m68000 | m88k | sparc \
421 | ns32k | alliant | arm | c1 | c2 | mips | pyramid | tron \
422 | a29k | romp | rs6000 | i960 | xmp | ymp | cray2 | 580 | h8300)
425 # start-sanitize-life
434 echo '***' Invalid cpu \`${cpu}\': configuration \`$1\' not recognized 1>&2
439 # verify that the vendor is known.
442 altos | amd | amdahl | aout | apollo | att | bcs | bout |\
443 cbm | convergent | convex | coff | cray | dec | encore |\
444 gould | harris | hitachi | intel | isi | hp | ibm | little | mips | motorola | \
445 ncr | next | none | nyu | sco | sequent | sgi | sony | sun |\
446 unicom | utek | wrs | bull ) ;;
448 # start-sanitize-life
457 echo '***' Invalid vendor \`${vendor}\': configuration \`$1\' not recognized 1>&2
462 # verify that the os is known, if it exists.
465 aix* | aout | bout | bsd* | coff | ctix* | dgux* | dynix* | esix* \
467 | hds | irix* | isc* | kern | mach* | msdos* | newsos* | nindy* | none \
468 | osf* | sco* | sunos* | sysv* | ultrix* | unos* | v88r* \
469 | vms* | vxworks* | sym[1-9]* | unicos* | uts | svr4 | m88kbcs \
474 hal32 | hal64 | v7 | v9) ;;
478 echo '***' Invalid os \`${os}\': configuration \`$1\' not recognized 1>&2
483 echo ${cpu}-${vendor}-${os}