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
16 # Please email any bugs, comments, and/or additions to this file to:
19 # decode aliases into canonical names
22 # cpu alone is a valid alias for cpu-none-none.
23 vax | tahoe | i386 | i860 | m68k | m68000 | m88k | sparc | ns32k \
24 | alliant | arm | c1 | c2 | mips | pyramid | tron | a29k \
25 | rtpc | rs6000 | i960)
80 news | news700 | news800 | news900)
85 unixpc | safari | pc7300 | 3b1 | 7300 | 7300-att | att-7300)
90 delta | 3300 | motorola-3300 | motorola-delta \
91 | 3300-motorola | delta-motorola)
166 roadrunner | sun386 | sun386i)
201 hp300hpux | hpux | hp9k3[2-9][0-9])
206 hp9k31[0-9] | hp9k2[0-9][0-9])
241 bigmips | news-3600 | risc-news)
251 dec3100 | decstatn | decstation | decstation-3100 | pmax)
282 # not an alias. parse what we expect to be a canonical name.
284 cpu=`echo $1 | sed 's/-.*$//'`
286 if [ "${cpu}" = "$1" ] ; then
287 # no vendor so this is an invalid name.
288 echo '***' No vendor: configuration \`$1\' not recognized 1>&2
292 rest=`echo $1 | sed "s/${cpu}-//"`
293 vendor=`echo ${rest} | sed 's/-.*$//'`
295 if [ "${vendor}" = "${rest}" ] ; then
296 # a missing os is acceptable
299 os=`echo ${rest} | sed "s/${vendor}-//"`
305 # At this point we should have three parts of a canonical name in cpu,
308 # verify that the cpu is known.
311 vax | tahoe | i386 | i860 | m68k | m68000 | m88k | sparc | ns32k \
312 | alliant | arm | c1 | c2 | mips | pyramid | tron | a29k \
313 | rtpc | rs6000 | i960 | none)
316 echo '***' Invalid cpu \`${cpu}\': configuration \`$1\' not recognized 1>&2
321 # verify that the vendor is known.
324 none | convex | mips | dec | little | sony | ncr | convergent \
325 | altos | apollo | isi | hp | next | sco | ibm | sun \
326 | unicom | sequent | encore | motorola | att | sgi \
327 | utek | gould | wrs | intel | aout | bout | coff) ;;
329 echo '***' Invalid vendor \`${vendor}\': configuration \`$1\' not recognized 1>&2
334 # verify that the os is known, if it exists.
337 aix* | aout | bout | bsd* | coff | ctix* | dynix* | esix* | hpux* \
338 | isc* | mach* | newsos* | nindy* | none | osf* | osf* | sco* \
339 | sunos* | sysv* | ultrix* | unos* | v88r* | vms* | vxworks*)
342 echo '***' Invalid os \`${os}\': configuration \`$1\' not recognized 1>&2
347 echo ${cpu}-${vendor}-${os}