Blame SOURCES/config.sub

76c1b9
#! /bin/sh
76c1b9
# Configuration validation subroutine script.
76c1b9
#   Copyright 1992-2013 Free Software Foundation, Inc.
76c1b9
76c1b9
timestamp='2013-08-10'
76c1b9
76c1b9
# This file is free software; you can redistribute it and/or modify it
76c1b9
# under the terms of the GNU General Public License as published by
76c1b9
# the Free Software Foundation; either version 3 of the License, or
76c1b9
# (at your option) any later version.
76c1b9
#
76c1b9
# This program is distributed in the hope that it will be useful, but
76c1b9
# WITHOUT ANY WARRANTY; without even the implied warranty of
76c1b9
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
76c1b9
# General Public License for more details.
76c1b9
#
76c1b9
# You should have received a copy of the GNU General Public License
76c1b9
# along with this program; if not, see <http://www.gnu.org/licenses/>.
76c1b9
#
76c1b9
# As a special exception to the GNU General Public License, if you
76c1b9
# distribute this file as part of a program that contains a
76c1b9
# configuration script generated by Autoconf, you may include it under
76c1b9
# the same distribution terms that you use for the rest of that
76c1b9
# program.  This Exception is an additional permission under section 7
76c1b9
# of the GNU General Public License, version 3 ("GPLv3").
76c1b9
76c1b9
76c1b9
# Please send patches with a ChangeLog entry to config-patches@gnu.org.
76c1b9
#
76c1b9
# Configuration subroutine to validate and canonicalize a configuration type.
76c1b9
# Supply the specified configuration type as an argument.
76c1b9
# If it is invalid, we print an error message on stderr and exit with code 1.
76c1b9
# Otherwise, we print the canonical config type on stdout and succeed.
76c1b9
76c1b9
# You can get the latest version of this script from:
76c1b9
# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD
76c1b9
76c1b9
# This file is supposed to be the same for all GNU packages
76c1b9
# and recognize all the CPU types, system types and aliases
76c1b9
# that are meaningful with *any* GNU software.
76c1b9
# Each package is responsible for reporting which valid configurations
76c1b9
# it does not support.  The user should be able to distinguish
76c1b9
# a failure to support a valid configuration from a meaningless
76c1b9
# configuration.
76c1b9
76c1b9
# The goal of this file is to map all the various variations of a given
76c1b9
# machine specification into a single specification in the form:
76c1b9
#	CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
76c1b9
# or in some cases, the newer four-part form:
76c1b9
#	CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
76c1b9
# It is wrong to echo any other type of specification.
76c1b9
76c1b9
me=`echo "$0" | sed -e 's,.*/,,'`
76c1b9
76c1b9
usage="\
76c1b9
Usage: $0 [OPTION] CPU-MFR-OPSYS
76c1b9
       $0 [OPTION] ALIAS
76c1b9
76c1b9
Canonicalize a configuration name.
76c1b9
76c1b9
Operation modes:
76c1b9
  -h, --help         print this help, then exit
76c1b9
  -t, --time-stamp   print date of last modification, then exit
76c1b9
  -v, --version      print version number, then exit
76c1b9
76c1b9
Report bugs and patches to <config-patches@gnu.org>."
76c1b9
76c1b9
version="\
76c1b9
GNU config.sub ($timestamp)
76c1b9
76c1b9
Copyright 1992-2013 Free Software Foundation, Inc.
76c1b9
76c1b9
This is free software; see the source for copying conditions.  There is NO
76c1b9
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
76c1b9
76c1b9
help="
76c1b9
Try \`$me --help' for more information."
76c1b9
76c1b9
# Parse command line
76c1b9
while test $# -gt 0 ; do
76c1b9
  case $1 in
76c1b9
    --time-stamp | --time* | -t )
76c1b9
       echo "$timestamp" ; exit ;;
76c1b9
    --version | -v )
76c1b9
       echo "$version" ; exit ;;
76c1b9
    --help | --h* | -h )
76c1b9
       echo "$usage"; exit ;;
76c1b9
    -- )     # Stop option processing
76c1b9
       shift; break ;;
76c1b9
    - )	# Use stdin as input.
76c1b9
       break ;;
76c1b9
    -* )
76c1b9
       echo "$me: invalid option $1$help"
76c1b9
       exit 1 ;;
76c1b9
76c1b9
    *local*)
76c1b9
       # First pass through any local machine types.
76c1b9
       echo $1
76c1b9
       exit ;;
76c1b9
76c1b9
    * )
76c1b9
       break ;;
76c1b9
  esac
76c1b9
done
76c1b9
76c1b9
case $# in
76c1b9
 0) echo "$me: missing argument$help" >&2
76c1b9
    exit 1;;
76c1b9
 1) ;;
76c1b9
 *) echo "$me: too many arguments$help" >&2
76c1b9
    exit 1;;
76c1b9
esac
76c1b9
76c1b9
# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
76c1b9
# Here we must recognize all the valid KERNEL-OS combinations.
76c1b9
maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
76c1b9
case $maybe_os in
76c1b9
  nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \
76c1b9
  linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \
76c1b9
  knetbsd*-gnu* | netbsd*-gnu* | \
76c1b9
  kopensolaris*-gnu* | \
76c1b9
  storm-chaos* | os2-emx* | rtmk-nova*)
76c1b9
    os=-$maybe_os
76c1b9
    basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
76c1b9
    ;;
76c1b9
  android-linux)
76c1b9
    os=-linux-android
76c1b9
    basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown
76c1b9
    ;;
76c1b9
  *)
76c1b9
    basic_machine=`echo $1 | sed 's/-[^-]*$//'`
76c1b9
    if [ $basic_machine != $1 ]
76c1b9
    then os=`echo $1 | sed 's/.*-/-/'`
76c1b9
    else os=; fi
76c1b9
    ;;
76c1b9
esac
76c1b9
76c1b9
### Let's recognize common machines as not being operating systems so
76c1b9
### that things like config.sub decstation-3100 work.  We also
76c1b9
### recognize some manufacturers as not being operating systems, so we
76c1b9
### can provide default operating systems below.
76c1b9
case $os in
76c1b9
	-sun*os*)
76c1b9
		# Prevent following clause from handling this invalid input.
76c1b9
		;;
76c1b9
	-dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \
76c1b9
	-att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \
76c1b9
	-unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \
76c1b9
	-convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
76c1b9
	-c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
76c1b9
	-harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
76c1b9
	-apple | -axis | -knuth | -cray | -microblaze*)
76c1b9
		os=
76c1b9
		basic_machine=$1
76c1b9
		;;
76c1b9
	-bluegene*)
76c1b9
		os=-cnk
76c1b9
		;;
76c1b9
	-sim | -cisco | -oki | -wec | -winbond)
76c1b9
		os=
76c1b9
		basic_machine=$1
76c1b9
		;;
76c1b9
	-scout)
76c1b9
		;;
76c1b9
	-wrs)
76c1b9
		os=-vxworks
76c1b9
		basic_machine=$1
76c1b9
		;;
76c1b9
	-chorusos*)
76c1b9
		os=-chorusos
76c1b9
		basic_machine=$1
76c1b9
		;;
76c1b9
	-chorusrdb)
76c1b9
		os=-chorusrdb
76c1b9
		basic_machine=$1
76c1b9
		;;
76c1b9
	-hiux*)
76c1b9
		os=-hiuxwe2
76c1b9
		;;
76c1b9
	-sco6)
76c1b9
		os=-sco5v6
76c1b9
		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
76c1b9
		;;
76c1b9
	-sco5)
76c1b9
		os=-sco3.2v5
76c1b9
		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
76c1b9
		;;
76c1b9
	-sco4)
76c1b9
		os=-sco3.2v4
76c1b9
		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
76c1b9
		;;
76c1b9
	-sco3.2.[4-9]*)
76c1b9
		os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
76c1b9
		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
76c1b9
		;;
76c1b9
	-sco3.2v[4-9]*)
76c1b9
		# Don't forget version if it is 3.2v4 or newer.
76c1b9
		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
76c1b9
		;;
76c1b9
	-sco5v6*)
76c1b9
		# Don't forget version if it is 3.2v4 or newer.
76c1b9
		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
76c1b9
		;;
76c1b9
	-sco*)
76c1b9
		os=-sco3.2v2
76c1b9
		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
76c1b9
		;;
76c1b9
	-udk*)
76c1b9
		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
76c1b9
		;;
76c1b9
	-isc)
76c1b9
		os=-isc2.2
76c1b9
		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
76c1b9
		;;
76c1b9
	-clix*)
76c1b9
		basic_machine=clipper-intergraph
76c1b9
		;;
76c1b9
	-isc*)
76c1b9
		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
76c1b9
		;;
76c1b9
	-lynx*178)
76c1b9
		os=-lynxos178
76c1b9
		;;
76c1b9
	-lynx*5)
76c1b9
		os=-lynxos5
76c1b9
		;;
76c1b9
	-lynx*)
76c1b9
		os=-lynxos
76c1b9
		;;
76c1b9
	-ptx*)
76c1b9
		basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`
76c1b9
		;;
76c1b9
	-windowsnt*)
76c1b9
		os=`echo $os | sed -e 's/windowsnt/winnt/'`
76c1b9
		;;
76c1b9
	-psos*)
76c1b9
		os=-psos
76c1b9
		;;
76c1b9
	-mint | -mint[0-9]*)
76c1b9
		basic_machine=m68k-atari
76c1b9
		os=-mint
76c1b9
		;;
76c1b9
esac
76c1b9
76c1b9
# Decode aliases for certain CPU-COMPANY combinations.
76c1b9
case $basic_machine in
76c1b9
	# Recognize the basic CPU types without company name.
76c1b9
	# Some are omitted here because they have special meanings below.
76c1b9
	1750a | 580 \
76c1b9
	| a29k \
76c1b9
	| aarch64 | aarch64_be \
76c1b9
	| alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
76c1b9
	| alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \
76c1b9
	| am33_2.0 \
76c1b9
	| arc | arceb \
76c1b9
	| arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \
76c1b9
	| avr | avr32 \
76c1b9
	| be32 | be64 \
76c1b9
	| bfin \
76c1b9
	| c4x | c8051 | clipper \
76c1b9
	| d10v | d30v | dlx | dsp16xx \
76c1b9
	| epiphany \
76c1b9
	| fido | fr30 | frv \
76c1b9
	| h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
76c1b9
	| hexagon \
76c1b9
	| i370 | i860 | i960 | ia64 \
76c1b9
	| ip2k | iq2000 \
76c1b9
	| le32 | le64 \
76c1b9
	| lm32 \
76c1b9
	| m32c | m32r | m32rle | m68000 | m68k | m88k \
76c1b9
	| maxq | mb | microblaze | microblazeel | mcore | mep | metag \
76c1b9
	| mips | mipsbe | mipseb | mipsel | mipsle \
76c1b9
	| mips16 \
76c1b9
	| mips64 | mips64el \
76c1b9
	| mips64octeon | mips64octeonel \
76c1b9
	| mips64orion | mips64orionel \
76c1b9
	| mips64r5900 | mips64r5900el \
76c1b9
	| mips64vr | mips64vrel \
76c1b9
	| mips64vr4100 | mips64vr4100el \
76c1b9
	| mips64vr4300 | mips64vr4300el \
76c1b9
	| mips64vr5000 | mips64vr5000el \
76c1b9
	| mips64vr5900 | mips64vr5900el \
76c1b9
	| mipsisa32 | mipsisa32el \
76c1b9
	| mipsisa32r2 | mipsisa32r2el \
76c1b9
	| mipsisa64 | mipsisa64el \
76c1b9
	| mipsisa64r2 | mipsisa64r2el \
76c1b9
	| mipsisa64sb1 | mipsisa64sb1el \
76c1b9
	| mipsisa64sr71k | mipsisa64sr71kel \
76c1b9
	| mipsr5900 | mipsr5900el \
76c1b9
	| mipstx39 | mipstx39el \
76c1b9
	| mn10200 | mn10300 \
76c1b9
	| moxie \
76c1b9
	| mt \
76c1b9
	| msp430 \
76c1b9
	| nds32 | nds32le | nds32be \
76c1b9
	| nios | nios2 | nios2eb | nios2el \
76c1b9
	| ns16k | ns32k \
76c1b9
	| open8 \
76c1b9
	| or1k | or32 \
76c1b9
	| pdp10 | pdp11 | pj | pjl \
76c1b9
	| powerpc | powerpc64 | powerpc64le | powerpcle \
76c1b9
	| pyramid \
76c1b9
	| rl78 | rx \
76c1b9
	| score \
76c1b9
	| sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
76c1b9
	| sh64 | sh64le \
76c1b9
	| sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \
76c1b9
	| sparcv8 | sparcv9 | sparcv9b | sparcv9v \
76c1b9
	| spu \
76c1b9
	| tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \
76c1b9
	| ubicom32 \
76c1b9
	| v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \
76c1b9
	| we32k \
76c1b9
	| x86 | xc16x | xstormy16 | xtensa \
76c1b9
	| z8k | z80)
76c1b9
		basic_machine=$basic_machine-unknown
76c1b9
		;;
76c1b9
	c54x)
76c1b9
		basic_machine=tic54x-unknown
76c1b9
		;;
76c1b9
	c55x)
76c1b9
		basic_machine=tic55x-unknown
76c1b9
		;;
76c1b9
	c6x)
76c1b9
		basic_machine=tic6x-unknown
76c1b9
		;;
76c1b9
	m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | picochip)
76c1b9
		basic_machine=$basic_machine-unknown
76c1b9
		os=-none
76c1b9
		;;
76c1b9
	m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k)
76c1b9
		;;
76c1b9
	ms1)
76c1b9
		basic_machine=mt-unknown
76c1b9
		;;
76c1b9
76c1b9
	strongarm | thumb | xscale)
76c1b9
		basic_machine=arm-unknown
76c1b9
		;;
76c1b9
	xgate)
76c1b9
		basic_machine=$basic_machine-unknown
76c1b9
		os=-none
76c1b9
		;;
76c1b9
	xscaleeb)
76c1b9
		basic_machine=armeb-unknown
76c1b9
		;;
76c1b9
76c1b9
	xscaleel)
76c1b9
		basic_machine=armel-unknown
76c1b9
		;;
76c1b9
76c1b9
	# We use `pc' rather than `unknown'
76c1b9
	# because (1) that's what they normally are, and
76c1b9
	# (2) the word "unknown" tends to confuse beginning users.
76c1b9
	i*86 | x86_64)
76c1b9
	  basic_machine=$basic_machine-pc
76c1b9
	  ;;
76c1b9
	# Object if more than one company name word.
76c1b9
	*-*-*)
76c1b9
		echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
76c1b9
		exit 1
76c1b9
		;;
76c1b9
	# Recognize the basic CPU types with company name.
76c1b9
	580-* \
76c1b9
	| a29k-* \
76c1b9
	| aarch64-* | aarch64_be-* \
76c1b9
	| alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \
76c1b9
	| alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
76c1b9
	| alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \
76c1b9
	| arm-*  | armbe-* | armle-* | armeb-* | armv*-* \
76c1b9
	| avr-* | avr32-* \
76c1b9
	| be32-* | be64-* \
76c1b9
	| bfin-* | bs2000-* \
76c1b9
	| c[123]* | c30-* | [cjt]90-* | c4x-* \
76c1b9
	| c8051-* | clipper-* | craynv-* | cydra-* \
76c1b9
	| d10v-* | d30v-* | dlx-* \
76c1b9
	| elxsi-* \
76c1b9
	| f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \
76c1b9
	| h8300-* | h8500-* \
76c1b9
	| hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
76c1b9
	| hexagon-* \
76c1b9
	| i*86-* | i860-* | i960-* | ia64-* \
76c1b9
	| ip2k-* | iq2000-* \
76c1b9
	| le32-* | le64-* \
76c1b9
	| lm32-* \
76c1b9
	| m32c-* | m32r-* | m32rle-* \
76c1b9
	| m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
76c1b9
	| m88110-* | m88k-* | maxq-* | mcore-* | metag-* \
76c1b9
	| microblaze-* | microblazeel-* \
76c1b9
	| mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \
76c1b9
	| mips16-* \
76c1b9
	| mips64-* | mips64el-* \
76c1b9
	| mips64octeon-* | mips64octeonel-* \
76c1b9
	| mips64orion-* | mips64orionel-* \
76c1b9
	| mips64r5900-* | mips64r5900el-* \
76c1b9
	| mips64vr-* | mips64vrel-* \
76c1b9
	| mips64vr4100-* | mips64vr4100el-* \
76c1b9
	| mips64vr4300-* | mips64vr4300el-* \
76c1b9
	| mips64vr5000-* | mips64vr5000el-* \
76c1b9
	| mips64vr5900-* | mips64vr5900el-* \
76c1b9
	| mipsisa32-* | mipsisa32el-* \
76c1b9
	| mipsisa32r2-* | mipsisa32r2el-* \
76c1b9
	| mipsisa64-* | mipsisa64el-* \
76c1b9
	| mipsisa64r2-* | mipsisa64r2el-* \
76c1b9
	| mipsisa64sb1-* | mipsisa64sb1el-* \
76c1b9
	| mipsisa64sr71k-* | mipsisa64sr71kel-* \
76c1b9
	| mipsr5900-* | mipsr5900el-* \
76c1b9
	| mipstx39-* | mipstx39el-* \
76c1b9
	| mmix-* \
76c1b9
	| mt-* \
76c1b9
	| msp430-* \
76c1b9
	| nds32-* | nds32le-* | nds32be-* \
76c1b9
	| nios-* | nios2-* | nios2eb-* | nios2el-* \
76c1b9
	| none-* | np1-* | ns16k-* | ns32k-* \
76c1b9
	| open8-* \
76c1b9
	| orion-* \
76c1b9
	| pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
76c1b9
	| powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \
76c1b9
	| pyramid-* \
76c1b9
	| rl78-* | romp-* | rs6000-* | rx-* \
76c1b9
	| sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \
76c1b9
	| shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
76c1b9
	| sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \
76c1b9
	| sparclite-* \
76c1b9
	| sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \
76c1b9
	| tahoe-* \
76c1b9
	| tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
76c1b9
	| tile*-* \
76c1b9
	| tron-* \
76c1b9
	| ubicom32-* \
76c1b9
	| v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \
76c1b9
	| vax-* \
76c1b9
	| we32k-* \
76c1b9
	| x86-* | x86_64-* | xc16x-* | xps100-* \
76c1b9
	| xstormy16-* | xtensa*-* \
76c1b9
	| ymp-* \
76c1b9
	| z8k-* | z80-*)
76c1b9
		;;
76c1b9
	# Recognize the basic CPU types without company name, with glob match.
76c1b9
	xtensa*)
76c1b9
		basic_machine=$basic_machine-unknown
76c1b9
		;;
76c1b9
	# Recognize the various machine names and aliases which stand
76c1b9
	# for a CPU type and a company and sometimes even an OS.
76c1b9
	386bsd)
76c1b9
		basic_machine=i386-unknown
76c1b9
		os=-bsd
76c1b9
		;;
76c1b9
	3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
76c1b9
		basic_machine=m68000-att
76c1b9
		;;
76c1b9
	3b*)
76c1b9
		basic_machine=we32k-att
76c1b9
		;;
76c1b9
	a29khif)
76c1b9
		basic_machine=a29k-amd
76c1b9
		os=-udi
76c1b9
		;;
76c1b9
	abacus)
76c1b9
		basic_machine=abacus-unknown
76c1b9
		;;
76c1b9
	adobe68k)
76c1b9
		basic_machine=m68010-adobe
76c1b9
		os=-scout
76c1b9
		;;
76c1b9
	alliant | fx80)
76c1b9
		basic_machine=fx80-alliant
76c1b9
		;;
76c1b9
	altos | altos3068)
76c1b9
		basic_machine=m68k-altos
76c1b9
		;;
76c1b9
	am29k)
76c1b9
		basic_machine=a29k-none
76c1b9
		os=-bsd
76c1b9
		;;
76c1b9
	amd64)
76c1b9
		basic_machine=x86_64-pc
76c1b9
		;;
76c1b9
	amd64-*)
76c1b9
		basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'`
76c1b9
		;;
76c1b9
	amdahl)
76c1b9
		basic_machine=580-amdahl
76c1b9
		os=-sysv
76c1b9
		;;
76c1b9
	amiga | amiga-*)
76c1b9
		basic_machine=m68k-unknown
76c1b9
		;;
76c1b9
	amigaos | amigados)
76c1b9
		basic_machine=m68k-unknown
76c1b9
		os=-amigaos
76c1b9
		;;
76c1b9
	amigaunix | amix)
76c1b9
		basic_machine=m68k-unknown
76c1b9
		os=-sysv4
76c1b9
		;;
76c1b9
	apollo68)
76c1b9
		basic_machine=m68k-apollo
76c1b9
		os=-sysv
76c1b9
		;;
76c1b9
	apollo68bsd)
76c1b9
		basic_machine=m68k-apollo
76c1b9
		os=-bsd
76c1b9
		;;
76c1b9
	aros)
76c1b9
		basic_machine=i386-pc
76c1b9
		os=-aros
76c1b9
		;;
76c1b9
	aux)
76c1b9
		basic_machine=m68k-apple
76c1b9
		os=-aux
76c1b9
		;;
76c1b9
	balance)
76c1b9
		basic_machine=ns32k-sequent
76c1b9
		os=-dynix
76c1b9
		;;
76c1b9
	blackfin)
76c1b9
		basic_machine=bfin-unknown
76c1b9
		os=-linux
76c1b9
		;;
76c1b9
	blackfin-*)
76c1b9
		basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'`
76c1b9
		os=-linux
76c1b9
		;;
76c1b9
	bluegene*)
76c1b9
		basic_machine=powerpc-ibm
76c1b9
		os=-cnk
76c1b9
		;;
76c1b9
	c54x-*)
76c1b9
		basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'`
76c1b9
		;;
76c1b9
	c55x-*)
76c1b9
		basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'`
76c1b9
		;;
76c1b9
	c6x-*)
76c1b9
		basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'`
76c1b9
		;;
76c1b9
	c90)
76c1b9
		basic_machine=c90-cray
76c1b9
		os=-unicos
76c1b9
		;;
76c1b9
	cegcc)
76c1b9
		basic_machine=arm-unknown
76c1b9
		os=-cegcc
76c1b9
		;;
76c1b9
	convex-c1)
76c1b9
		basic_machine=c1-convex
76c1b9
		os=-bsd
76c1b9
		;;
76c1b9
	convex-c2)
76c1b9
		basic_machine=c2-convex
76c1b9
		os=-bsd
76c1b9
		;;
76c1b9
	convex-c32)
76c1b9
		basic_machine=c32-convex
76c1b9
		os=-bsd
76c1b9
		;;
76c1b9
	convex-c34)
76c1b9
		basic_machine=c34-convex
76c1b9
		os=-bsd
76c1b9
		;;
76c1b9
	convex-c38)
76c1b9
		basic_machine=c38-convex
76c1b9
		os=-bsd
76c1b9
		;;
76c1b9
	cray | j90)
76c1b9
		basic_machine=j90-cray
76c1b9
		os=-unicos
76c1b9
		;;
76c1b9
	craynv)
76c1b9
		basic_machine=craynv-cray
76c1b9
		os=-unicosmp
76c1b9
		;;
76c1b9
	cr16 | cr16-*)
76c1b9
		basic_machine=cr16-unknown
76c1b9
		os=-elf
76c1b9
		;;
76c1b9
	crds | unos)
76c1b9
		basic_machine=m68k-crds
76c1b9
		;;
76c1b9
	crisv32 | crisv32-* | etraxfs*)
76c1b9
		basic_machine=crisv32-axis
76c1b9
		;;
76c1b9
	cris | cris-* | etrax*)
76c1b9
		basic_machine=cris-axis
76c1b9
		;;
76c1b9
	crx)
76c1b9
		basic_machine=crx-unknown
76c1b9
		os=-elf
76c1b9
		;;
76c1b9
	da30 | da30-*)
76c1b9
		basic_machine=m68k-da30
76c1b9
		;;
76c1b9
	decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn)
76c1b9
		basic_machine=mips-dec
76c1b9
		;;
76c1b9
	decsystem10* | dec10*)
76c1b9
		basic_machine=pdp10-dec
76c1b9
		os=-tops10
76c1b9
		;;
76c1b9
	decsystem20* | dec20*)
76c1b9
		basic_machine=pdp10-dec
76c1b9
		os=-tops20
76c1b9
		;;
76c1b9
	delta | 3300 | motorola-3300 | motorola-delta \
76c1b9
	      | 3300-motorola | delta-motorola)
76c1b9
		basic_machine=m68k-motorola
76c1b9
		;;
76c1b9
	delta88)
76c1b9
		basic_machine=m88k-motorola
76c1b9
		os=-sysv3
76c1b9
		;;
76c1b9
	dicos)
76c1b9
		basic_machine=i686-pc
76c1b9
		os=-dicos
76c1b9
		;;
76c1b9
	djgpp)
76c1b9
		basic_machine=i586-pc
76c1b9
		os=-msdosdjgpp
76c1b9
		;;
76c1b9
	dpx20 | dpx20-*)
76c1b9
		basic_machine=rs6000-bull
76c1b9
		os=-bosx
76c1b9
		;;
76c1b9
	dpx2* | dpx2*-bull)
76c1b9
		basic_machine=m68k-bull
76c1b9
		os=-sysv3
76c1b9
		;;
76c1b9
	ebmon29k)
76c1b9
		basic_machine=a29k-amd
76c1b9
		os=-ebmon
76c1b9
		;;
76c1b9
	elxsi)
76c1b9
		basic_machine=elxsi-elxsi
76c1b9
		os=-bsd
76c1b9
		;;
76c1b9
	encore | umax | mmax)
76c1b9
		basic_machine=ns32k-encore
76c1b9
		;;
76c1b9
	es1800 | OSE68k | ose68k | ose | OSE)
76c1b9
		basic_machine=m68k-ericsson
76c1b9
		os=-ose
76c1b9
		;;
76c1b9
	fx2800)
76c1b9
		basic_machine=i860-alliant
76c1b9
		;;
76c1b9
	genix)
76c1b9
		basic_machine=ns32k-ns
76c1b9
		;;
76c1b9
	gmicro)
76c1b9
		basic_machine=tron-gmicro
76c1b9
		os=-sysv
76c1b9
		;;
76c1b9
	go32)
76c1b9
		basic_machine=i386-pc
76c1b9
		os=-go32
76c1b9
		;;
76c1b9
	h3050r* | hiux*)
76c1b9
		basic_machine=hppa1.1-hitachi
76c1b9
		os=-hiuxwe2
76c1b9
		;;
76c1b9
	h8300hms)
76c1b9
		basic_machine=h8300-hitachi
76c1b9
		os=-hms
76c1b9
		;;
76c1b9
	h8300xray)
76c1b9
		basic_machine=h8300-hitachi
76c1b9
		os=-xray
76c1b9
		;;
76c1b9
	h8500hms)
76c1b9
		basic_machine=h8500-hitachi
76c1b9
		os=-hms
76c1b9
		;;
76c1b9
	harris)
76c1b9
		basic_machine=m88k-harris
76c1b9
		os=-sysv3
76c1b9
		;;
76c1b9
	hp300-*)
76c1b9
		basic_machine=m68k-hp
76c1b9
		;;
76c1b9
	hp300bsd)
76c1b9
		basic_machine=m68k-hp
76c1b9
		os=-bsd
76c1b9
		;;
76c1b9
	hp300hpux)
76c1b9
		basic_machine=m68k-hp
76c1b9
		os=-hpux
76c1b9
		;;
76c1b9
	hp3k9[0-9][0-9] | hp9[0-9][0-9])
76c1b9
		basic_machine=hppa1.0-hp
76c1b9
		;;
76c1b9
	hp9k2[0-9][0-9] | hp9k31[0-9])
76c1b9
		basic_machine=m68000-hp
76c1b9
		;;
76c1b9
	hp9k3[2-9][0-9])
76c1b9
		basic_machine=m68k-hp
76c1b9
		;;
76c1b9
	hp9k6[0-9][0-9] | hp6[0-9][0-9])
76c1b9
		basic_machine=hppa1.0-hp
76c1b9
		;;
76c1b9
	hp9k7[0-79][0-9] | hp7[0-79][0-9])
76c1b9
		basic_machine=hppa1.1-hp
76c1b9
		;;
76c1b9
	hp9k78[0-9] | hp78[0-9])
76c1b9
		# FIXME: really hppa2.0-hp
76c1b9
		basic_machine=hppa1.1-hp
76c1b9
		;;
76c1b9
	hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893)
76c1b9
		# FIXME: really hppa2.0-hp
76c1b9
		basic_machine=hppa1.1-hp
76c1b9
		;;
76c1b9
	hp9k8[0-9][13679] | hp8[0-9][13679])
76c1b9
		basic_machine=hppa1.1-hp
76c1b9
		;;
76c1b9
	hp9k8[0-9][0-9] | hp8[0-9][0-9])
76c1b9
		basic_machine=hppa1.0-hp
76c1b9
		;;
76c1b9
	hppa-next)
76c1b9
		os=-nextstep3
76c1b9
		;;
76c1b9
	hppaosf)
76c1b9
		basic_machine=hppa1.1-hp
76c1b9
		os=-osf
76c1b9
		;;
76c1b9
	hppro)
76c1b9
		basic_machine=hppa1.1-hp
76c1b9
		os=-proelf
76c1b9
		;;
76c1b9
	i370-ibm* | ibm*)
76c1b9
		basic_machine=i370-ibm
76c1b9
		;;
76c1b9
	i*86v32)
76c1b9
		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
76c1b9
		os=-sysv32
76c1b9
		;;
76c1b9
	i*86v4*)
76c1b9
		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
76c1b9
		os=-sysv4
76c1b9
		;;
76c1b9
	i*86v)
76c1b9
		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
76c1b9
		os=-sysv
76c1b9
		;;
76c1b9
	i*86sol2)
76c1b9
		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
76c1b9
		os=-solaris2
76c1b9
		;;
76c1b9
	i386mach)
76c1b9
		basic_machine=i386-mach
76c1b9
		os=-mach
76c1b9
		;;
76c1b9
	i386-vsta | vsta)
76c1b9
		basic_machine=i386-unknown
76c1b9
		os=-vsta
76c1b9
		;;
76c1b9
	iris | iris4d)
76c1b9
		basic_machine=mips-sgi
76c1b9
		case $os in
76c1b9
		    -irix*)
76c1b9
			;;
76c1b9
		    *)
76c1b9
			os=-irix4
76c1b9
			;;
76c1b9
		esac
76c1b9
		;;
76c1b9
	isi68 | isi)
76c1b9
		basic_machine=m68k-isi
76c1b9
		os=-sysv
76c1b9
		;;
76c1b9
	m68knommu)
76c1b9
		basic_machine=m68k-unknown
76c1b9
		os=-linux
76c1b9
		;;
76c1b9
	m68knommu-*)
76c1b9
		basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'`
76c1b9
		os=-linux
76c1b9
		;;
76c1b9
	m88k-omron*)
76c1b9
		basic_machine=m88k-omron
76c1b9
		;;
76c1b9
	magnum | m3230)
76c1b9
		basic_machine=mips-mips
76c1b9
		os=-sysv
76c1b9
		;;
76c1b9
	merlin)
76c1b9
		basic_machine=ns32k-utek
76c1b9
		os=-sysv
76c1b9
		;;
76c1b9
	microblaze*)
76c1b9
		basic_machine=microblaze-xilinx
76c1b9
		;;
76c1b9
	mingw64)
76c1b9
		basic_machine=x86_64-pc
76c1b9
		os=-mingw64
76c1b9
		;;
76c1b9
	mingw32)
76c1b9
		basic_machine=i686-pc
76c1b9
		os=-mingw32
76c1b9
		;;
76c1b9
	mingw32ce)
76c1b9
		basic_machine=arm-unknown
76c1b9
		os=-mingw32ce
76c1b9
		;;
76c1b9
	miniframe)
76c1b9
		basic_machine=m68000-convergent
76c1b9
		;;
76c1b9
	*mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*)
76c1b9
		basic_machine=m68k-atari
76c1b9
		os=-mint
76c1b9
		;;
76c1b9
	mips3*-*)
76c1b9
		basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
76c1b9
		;;
76c1b9
	mips3*)
76c1b9
		basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
76c1b9
		;;
76c1b9
	monitor)
76c1b9
		basic_machine=m68k-rom68k
76c1b9
		os=-coff
76c1b9
		;;
76c1b9
	morphos)
76c1b9
		basic_machine=powerpc-unknown
76c1b9
		os=-morphos
76c1b9
		;;
76c1b9
	msdos)
76c1b9
		basic_machine=i386-pc
76c1b9
		os=-msdos
76c1b9
		;;
76c1b9
	ms1-*)
76c1b9
		basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
76c1b9
		;;
76c1b9
	msys)
76c1b9
		basic_machine=i686-pc
76c1b9
		os=-msys
76c1b9
		;;
76c1b9
	mvs)
76c1b9
		basic_machine=i370-ibm
76c1b9
		os=-mvs
76c1b9
		;;
76c1b9
	nacl)
76c1b9
		basic_machine=le32-unknown
76c1b9
		os=-nacl
76c1b9
		;;
76c1b9
	ncr3000)
76c1b9
		basic_machine=i486-ncr
76c1b9
		os=-sysv4
76c1b9
		;;
76c1b9
	netbsd386)
76c1b9
		basic_machine=i386-unknown
76c1b9
		os=-netbsd
76c1b9
		;;
76c1b9
	netwinder)
76c1b9
		basic_machine=armv4l-rebel
76c1b9
		os=-linux
76c1b9
		;;
76c1b9
	news | news700 | news800 | news900)
76c1b9
		basic_machine=m68k-sony
76c1b9
		os=-newsos
76c1b9
		;;
76c1b9
	news1000)
76c1b9
		basic_machine=m68030-sony
76c1b9
		os=-newsos
76c1b9
		;;
76c1b9
	news-3600 | risc-news)
76c1b9
		basic_machine=mips-sony
76c1b9
		os=-newsos
76c1b9
		;;
76c1b9
	necv70)
76c1b9
		basic_machine=v70-nec
76c1b9
		os=-sysv
76c1b9
		;;
76c1b9
	next | m*-next )
76c1b9
		basic_machine=m68k-next
76c1b9
		case $os in
76c1b9
		    -nextstep* )
76c1b9
			;;
76c1b9
		    -ns2*)
76c1b9
		      os=-nextstep2
76c1b9
			;;
76c1b9
		    *)
76c1b9
		      os=-nextstep3
76c1b9
			;;
76c1b9
		esac
76c1b9
		;;
76c1b9
	nh3000)
76c1b9
		basic_machine=m68k-harris
76c1b9
		os=-cxux
76c1b9
		;;
76c1b9
	nh[45]000)
76c1b9
		basic_machine=m88k-harris
76c1b9
		os=-cxux
76c1b9
		;;
76c1b9
	nindy960)
76c1b9
		basic_machine=i960-intel
76c1b9
		os=-nindy
76c1b9
		;;
76c1b9
	mon960)
76c1b9
		basic_machine=i960-intel
76c1b9
		os=-mon960
76c1b9
		;;
76c1b9
	nonstopux)
76c1b9
		basic_machine=mips-compaq
76c1b9
		os=-nonstopux
76c1b9
		;;
76c1b9
	np1)
76c1b9
		basic_machine=np1-gould
76c1b9
		;;
76c1b9
	neo-tandem)
76c1b9
		basic_machine=neo-tandem
76c1b9
		;;
76c1b9
	nse-tandem)
76c1b9
		basic_machine=nse-tandem
76c1b9
		;;
76c1b9
	nsr-tandem)
76c1b9
		basic_machine=nsr-tandem
76c1b9
		;;
76c1b9
	op50n-* | op60c-*)
76c1b9
		basic_machine=hppa1.1-oki
76c1b9
		os=-proelf
76c1b9
		;;
76c1b9
	openrisc | openrisc-*)
76c1b9
		basic_machine=or32-unknown
76c1b9
		;;
76c1b9
	os400)
76c1b9
		basic_machine=powerpc-ibm
76c1b9
		os=-os400
76c1b9
		;;
76c1b9
	OSE68000 | ose68000)
76c1b9
		basic_machine=m68000-ericsson
76c1b9
		os=-ose
76c1b9
		;;
76c1b9
	os68k)
76c1b9
		basic_machine=m68k-none
76c1b9
		os=-os68k
76c1b9
		;;
76c1b9
	pa-hitachi)
76c1b9
		basic_machine=hppa1.1-hitachi
76c1b9
		os=-hiuxwe2
76c1b9
		;;
76c1b9
	paragon)
76c1b9
		basic_machine=i860-intel
76c1b9
		os=-osf
76c1b9
		;;
76c1b9
	parisc)
76c1b9
		basic_machine=hppa-unknown
76c1b9
		os=-linux
76c1b9
		;;
76c1b9
	parisc-*)
76c1b9
		basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'`
76c1b9
		os=-linux
76c1b9
		;;
76c1b9
	pbd)
76c1b9
		basic_machine=sparc-tti
76c1b9
		;;
76c1b9
	pbb)
76c1b9
		basic_machine=m68k-tti
76c1b9
		;;
76c1b9
	pc532 | pc532-*)
76c1b9
		basic_machine=ns32k-pc532
76c1b9
		;;
76c1b9
	pc98)
76c1b9
		basic_machine=i386-pc
76c1b9
		;;
76c1b9
	pc98-*)
76c1b9
		basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'`
76c1b9
		;;
76c1b9
	pentium | p5 | k5 | k6 | nexgen | viac3)
76c1b9
		basic_machine=i586-pc
76c1b9
		;;
76c1b9
	pentiumpro | p6 | 6x86 | athlon | athlon_*)
76c1b9
		basic_machine=i686-pc
76c1b9
		;;
76c1b9
	pentiumii | pentium2 | pentiumiii | pentium3)
76c1b9
		basic_machine=i686-pc
76c1b9
		;;
76c1b9
	pentium4)
76c1b9
		basic_machine=i786-pc
76c1b9
		;;
76c1b9
	pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
76c1b9
		basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`
76c1b9
		;;
76c1b9
	pentiumpro-* | p6-* | 6x86-* | athlon-*)
76c1b9
		basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
76c1b9
		;;
76c1b9
	pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*)
76c1b9
		basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
76c1b9
		;;
76c1b9
	pentium4-*)
76c1b9
		basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'`
76c1b9
		;;
76c1b9
	pn)
76c1b9
		basic_machine=pn-gould
76c1b9
		;;
76c1b9
	power)	basic_machine=power-ibm
76c1b9
		;;
76c1b9
	ppc | ppcbe)	basic_machine=powerpc-unknown
76c1b9
		;;
76c1b9
	ppc-* | ppcbe-*)
76c1b9
		basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
76c1b9
		;;
76c1b9
	ppcle | powerpclittle | ppc-le | powerpc-little)
76c1b9
		basic_machine=powerpcle-unknown
76c1b9
		;;
76c1b9
	ppcle-* | powerpclittle-*)
76c1b9
		basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'`
76c1b9
		;;
76c1b9
	ppc64)	basic_machine=powerpc64-unknown
76c1b9
		;;
76c1b9
	ppc64-* | ppc64p7-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'`
76c1b9
		;;
76c1b9
	ppc64le | powerpc64little | ppc64-le | powerpc64-little)
76c1b9
		basic_machine=powerpc64le-unknown
76c1b9
		;;
76c1b9
	ppc64le-* | powerpc64little-*)
76c1b9
		basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'`
76c1b9
		;;
76c1b9
	ps2)
76c1b9
		basic_machine=i386-ibm
76c1b9
		;;
76c1b9
	pw32)
76c1b9
		basic_machine=i586-unknown
76c1b9
		os=-pw32
76c1b9
		;;
76c1b9
	rdos | rdos64)
76c1b9
		basic_machine=x86_64-pc
76c1b9
		os=-rdos
76c1b9
		;;
76c1b9
	rdos32)
76c1b9
		basic_machine=i386-pc
76c1b9
		os=-rdos
76c1b9
		;;
76c1b9
	rom68k)
76c1b9
		basic_machine=m68k-rom68k
76c1b9
		os=-coff
76c1b9
		;;
76c1b9
	rm[46]00)
76c1b9
		basic_machine=mips-siemens
76c1b9
		;;
76c1b9
	rtpc | rtpc-*)
76c1b9
		basic_machine=romp-ibm
76c1b9
		;;
76c1b9
	s390 | s390-*)
76c1b9
		basic_machine=s390-ibm
76c1b9
		;;
76c1b9
	s390x | s390x-*)
76c1b9
		basic_machine=s390x-ibm
76c1b9
		;;
76c1b9
	sa29200)
76c1b9
		basic_machine=a29k-amd
76c1b9
		os=-udi
76c1b9
		;;
76c1b9
	sb1)
76c1b9
		basic_machine=mipsisa64sb1-unknown
76c1b9
		;;
76c1b9
	sb1el)
76c1b9
		basic_machine=mipsisa64sb1el-unknown
76c1b9
		;;
76c1b9
	sde)
76c1b9
		basic_machine=mipsisa32-sde
76c1b9
		os=-elf
76c1b9
		;;
76c1b9
	sei)
76c1b9
		basic_machine=mips-sei
76c1b9
		os=-seiux
76c1b9
		;;
76c1b9
	sequent)
76c1b9
		basic_machine=i386-sequent
76c1b9
		;;
76c1b9
	sh)
76c1b9
		basic_machine=sh-hitachi
76c1b9
		os=-hms
76c1b9
		;;
76c1b9
	sh5el)
76c1b9
		basic_machine=sh5le-unknown
76c1b9
		;;
76c1b9
	sh64)
76c1b9
		basic_machine=sh64-unknown
76c1b9
		;;
76c1b9
	sparclite-wrs | simso-wrs)
76c1b9
		basic_machine=sparclite-wrs
76c1b9
		os=-vxworks
76c1b9
		;;
76c1b9
	sps7)
76c1b9
		basic_machine=m68k-bull
76c1b9
		os=-sysv2
76c1b9
		;;
76c1b9
	spur)
76c1b9
		basic_machine=spur-unknown
76c1b9
		;;
76c1b9
	st2000)
76c1b9
		basic_machine=m68k-tandem
76c1b9
		;;
76c1b9
	stratus)
76c1b9
		basic_machine=i860-stratus
76c1b9
		os=-sysv4
76c1b9
		;;
76c1b9
	strongarm-* | thumb-*)
76c1b9
		basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'`
76c1b9
		;;
76c1b9
	sun2)
76c1b9
		basic_machine=m68000-sun
76c1b9
		;;
76c1b9
	sun2os3)
76c1b9
		basic_machine=m68000-sun
76c1b9
		os=-sunos3
76c1b9
		;;
76c1b9
	sun2os4)
76c1b9
		basic_machine=m68000-sun
76c1b9
		os=-sunos4
76c1b9
		;;
76c1b9
	sun3os3)
76c1b9
		basic_machine=m68k-sun
76c1b9
		os=-sunos3
76c1b9
		;;
76c1b9
	sun3os4)
76c1b9
		basic_machine=m68k-sun
76c1b9
		os=-sunos4
76c1b9
		;;
76c1b9
	sun4os3)
76c1b9
		basic_machine=sparc-sun
76c1b9
		os=-sunos3
76c1b9
		;;
76c1b9
	sun4os4)
76c1b9
		basic_machine=sparc-sun
76c1b9
		os=-sunos4
76c1b9
		;;
76c1b9
	sun4sol2)
76c1b9
		basic_machine=sparc-sun
76c1b9
		os=-solaris2
76c1b9
		;;
76c1b9
	sun3 | sun3-*)
76c1b9
		basic_machine=m68k-sun
76c1b9
		;;
76c1b9
	sun4)
76c1b9
		basic_machine=sparc-sun
76c1b9
		;;
76c1b9
	sun386 | sun386i | roadrunner)
76c1b9
		basic_machine=i386-sun
76c1b9
		;;
76c1b9
	sv1)
76c1b9
		basic_machine=sv1-cray
76c1b9
		os=-unicos
76c1b9
		;;
76c1b9
	symmetry)
76c1b9
		basic_machine=i386-sequent
76c1b9
		os=-dynix
76c1b9
		;;
76c1b9
	t3e)
76c1b9
		basic_machine=alphaev5-cray
76c1b9
		os=-unicos
76c1b9
		;;
76c1b9
	t90)
76c1b9
		basic_machine=t90-cray
76c1b9
		os=-unicos
76c1b9
		;;
76c1b9
	tile*)
76c1b9
		basic_machine=$basic_machine-unknown
76c1b9
		os=-linux-gnu
76c1b9
		;;
76c1b9
	tx39)
76c1b9
		basic_machine=mipstx39-unknown
76c1b9
		;;
76c1b9
	tx39el)
76c1b9
		basic_machine=mipstx39el-unknown
76c1b9
		;;
76c1b9
	toad1)
76c1b9
		basic_machine=pdp10-xkl
76c1b9
		os=-tops20
76c1b9
		;;
76c1b9
	tower | tower-32)
76c1b9
		basic_machine=m68k-ncr
76c1b9
		;;
76c1b9
	tpf)
76c1b9
		basic_machine=s390x-ibm
76c1b9
		os=-tpf
76c1b9
		;;
76c1b9
	udi29k)
76c1b9
		basic_machine=a29k-amd
76c1b9
		os=-udi
76c1b9
		;;
76c1b9
	ultra3)
76c1b9
		basic_machine=a29k-nyu
76c1b9
		os=-sym1
76c1b9
		;;
76c1b9
	v810 | necv810)
76c1b9
		basic_machine=v810-nec
76c1b9
		os=-none
76c1b9
		;;
76c1b9
	vaxv)
76c1b9
		basic_machine=vax-dec
76c1b9
		os=-sysv
76c1b9
		;;
76c1b9
	vms)
76c1b9
		basic_machine=vax-dec
76c1b9
		os=-vms
76c1b9
		;;
76c1b9
	vpp*|vx|vx-*)
76c1b9
		basic_machine=f301-fujitsu
76c1b9
		;;
76c1b9
	vxworks960)
76c1b9
		basic_machine=i960-wrs
76c1b9
		os=-vxworks
76c1b9
		;;
76c1b9
	vxworks68)
76c1b9
		basic_machine=m68k-wrs
76c1b9
		os=-vxworks
76c1b9
		;;
76c1b9
	vxworks29k)
76c1b9
		basic_machine=a29k-wrs
76c1b9
		os=-vxworks
76c1b9
		;;
76c1b9
	w65*)
76c1b9
		basic_machine=w65-wdc
76c1b9
		os=-none
76c1b9
		;;
76c1b9
	w89k-*)
76c1b9
		basic_machine=hppa1.1-winbond
76c1b9
		os=-proelf
76c1b9
		;;
76c1b9
	xbox)
76c1b9
		basic_machine=i686-pc
76c1b9
		os=-mingw32
76c1b9
		;;
76c1b9
	xps | xps100)
76c1b9
		basic_machine=xps100-honeywell
76c1b9
		;;
76c1b9
	xscale-* | xscalee[bl]-*)
76c1b9
		basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'`
76c1b9
		;;
76c1b9
	ymp)
76c1b9
		basic_machine=ymp-cray
76c1b9
		os=-unicos
76c1b9
		;;
76c1b9
	z8k-*-coff)
76c1b9
		basic_machine=z8k-unknown
76c1b9
		os=-sim
76c1b9
		;;
76c1b9
	z80-*-coff)
76c1b9
		basic_machine=z80-unknown
76c1b9
		os=-sim
76c1b9
		;;
76c1b9
	none)
76c1b9
		basic_machine=none-none
76c1b9
		os=-none
76c1b9
		;;
76c1b9
76c1b9
# Here we handle the default manufacturer of certain CPU types.  It is in
76c1b9
# some cases the only manufacturer, in others, it is the most popular.
76c1b9
	w89k)
76c1b9
		basic_machine=hppa1.1-winbond
76c1b9
		;;
76c1b9
	op50n)
76c1b9
		basic_machine=hppa1.1-oki
76c1b9
		;;
76c1b9
	op60c)
76c1b9
		basic_machine=hppa1.1-oki
76c1b9
		;;
76c1b9
	romp)
76c1b9
		basic_machine=romp-ibm
76c1b9
		;;
76c1b9
	mmix)
76c1b9
		basic_machine=mmix-knuth
76c1b9
		;;
76c1b9
	rs6000)
76c1b9
		basic_machine=rs6000-ibm
76c1b9
		;;
76c1b9
	vax)
76c1b9
		basic_machine=vax-dec
76c1b9
		;;
76c1b9
	pdp10)
76c1b9
		# there are many clones, so DEC is not a safe bet
76c1b9
		basic_machine=pdp10-unknown
76c1b9
		;;
76c1b9
	pdp11)
76c1b9
		basic_machine=pdp11-dec
76c1b9
		;;
76c1b9
	we32k)
76c1b9
		basic_machine=we32k-att
76c1b9
		;;
76c1b9
	sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele)
76c1b9
		basic_machine=sh-unknown
76c1b9
		;;
76c1b9
	sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v)
76c1b9
		basic_machine=sparc-sun
76c1b9
		;;
76c1b9
	cydra)
76c1b9
		basic_machine=cydra-cydrome
76c1b9
		;;
76c1b9
	orion)
76c1b9
		basic_machine=orion-highlevel
76c1b9
		;;
76c1b9
	orion105)
76c1b9
		basic_machine=clipper-highlevel
76c1b9
		;;
76c1b9
	mac | mpw | mac-mpw)
76c1b9
		basic_machine=m68k-apple
76c1b9
		;;
76c1b9
	pmac | pmac-mpw)
76c1b9
		basic_machine=powerpc-apple
76c1b9
		;;
76c1b9
	*-unknown)
76c1b9
		# Make sure to match an already-canonicalized machine name.
76c1b9
		;;
76c1b9
	*)
76c1b9
		echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
76c1b9
		exit 1
76c1b9
		;;
76c1b9
esac
76c1b9
76c1b9
# Here we canonicalize certain aliases for manufacturers.
76c1b9
case $basic_machine in
76c1b9
	*-digital*)
76c1b9
		basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
76c1b9
		;;
76c1b9
	*-commodore*)
76c1b9
		basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
76c1b9
		;;
76c1b9
	*)
76c1b9
		;;
76c1b9
esac
76c1b9
76c1b9
# Decode manufacturer-specific aliases for certain operating systems.
76c1b9
76c1b9
if [ x"$os" != x"" ]
76c1b9
then
76c1b9
case $os in
76c1b9
	# First match some system type aliases
76c1b9
	# that might get confused with valid system types.
76c1b9
	# -solaris* is a basic system type, with this one exception.
76c1b9
	-auroraux)
76c1b9
		os=-auroraux
76c1b9
		;;
76c1b9
	-solaris1 | -solaris1.*)
76c1b9
		os=`echo $os | sed -e 's|solaris1|sunos4|'`
76c1b9
		;;
76c1b9
	-solaris)
76c1b9
		os=-solaris2
76c1b9
		;;
76c1b9
	-svr4*)
76c1b9
		os=-sysv4
76c1b9
		;;
76c1b9
	-unixware*)
76c1b9
		os=-sysv4.2uw
76c1b9
		;;
76c1b9
	-gnu/linux*)
76c1b9
		os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
76c1b9
		;;
76c1b9
	# First accept the basic system types.
76c1b9
	# The portable systems comes first.
76c1b9
	# Each alternative MUST END IN A *, to match a version number.
76c1b9
	# -sysv* is not here because it comes later, after sysvr4.
76c1b9
	-gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
76c1b9
	      | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\
76c1b9
	      | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \
76c1b9
	      | -sym* | -kopensolaris* | -plan9* \
76c1b9
	      | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \
76c1b9
	      | -aos* | -aros* \
76c1b9
	      | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
76c1b9
	      | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
76c1b9
	      | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \
76c1b9
	      | -bitrig* | -openbsd* | -solidbsd* \
76c1b9
	      | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \
76c1b9
	      | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
76c1b9
	      | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
76c1b9
	      | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
76c1b9
	      | -chorusos* | -chorusrdb* | -cegcc* \
76c1b9
	      | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
76c1b9
	      | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \
76c1b9
	      | -linux-newlib* | -linux-musl* | -linux-uclibc* \
76c1b9
	      | -uxpv* | -beos* | -mpeix* | -udk* \
76c1b9
	      | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
76c1b9
	      | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
76c1b9
	      | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \
76c1b9
	      | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
76c1b9
	      | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
76c1b9
	      | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
76c1b9
	      | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*)
76c1b9
	# Remember, each alternative MUST END IN *, to match a version number.
76c1b9
		;;
76c1b9
	-qnx*)
76c1b9
		case $basic_machine in
76c1b9
		    x86-* | i*86-*)
76c1b9
			;;
76c1b9
		    *)
76c1b9
			os=-nto$os
76c1b9
			;;
76c1b9
		esac
76c1b9
		;;
76c1b9
	-nto-qnx*)
76c1b9
		;;
76c1b9
	-nto*)
76c1b9
		os=`echo $os | sed -e 's|nto|nto-qnx|'`
76c1b9
		;;
76c1b9
	-sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \
76c1b9
	      | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \
76c1b9
	      | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*)
76c1b9
		;;
76c1b9
	-mac*)
76c1b9
		os=`echo $os | sed -e 's|mac|macos|'`
76c1b9
		;;
76c1b9
	-linux-dietlibc)
76c1b9
		os=-linux-dietlibc
76c1b9
		;;
76c1b9
	-linux*)
76c1b9
		os=`echo $os | sed -e 's|linux|linux-gnu|'`
76c1b9
		;;
76c1b9
	-sunos5*)
76c1b9
		os=`echo $os | sed -e 's|sunos5|solaris2|'`
76c1b9
		;;
76c1b9
	-sunos6*)
76c1b9
		os=`echo $os | sed -e 's|sunos6|solaris3|'`
76c1b9
		;;
76c1b9
	-opened*)
76c1b9
		os=-openedition
76c1b9
		;;
76c1b9
	-os400*)
76c1b9
		os=-os400
76c1b9
		;;
76c1b9
	-wince*)
76c1b9
		os=-wince
76c1b9
		;;
76c1b9
	-osfrose*)
76c1b9
		os=-osfrose
76c1b9
		;;
76c1b9
	-osf*)
76c1b9
		os=-osf
76c1b9
		;;
76c1b9
	-utek*)
76c1b9
		os=-bsd
76c1b9
		;;
76c1b9
	-dynix*)
76c1b9
		os=-bsd
76c1b9
		;;
76c1b9
	-acis*)
76c1b9
		os=-aos
76c1b9
		;;
76c1b9
	-atheos*)
76c1b9
		os=-atheos
76c1b9
		;;
76c1b9
	-syllable*)
76c1b9
		os=-syllable
76c1b9
		;;
76c1b9
	-386bsd)
76c1b9
		os=-bsd
76c1b9
		;;
76c1b9
	-ctix* | -uts*)
76c1b9
		os=-sysv
76c1b9
		;;
76c1b9
	-nova*)
76c1b9
		os=-rtmk-nova
76c1b9
		;;
76c1b9
	-ns2 )
76c1b9
		os=-nextstep2
76c1b9
		;;
76c1b9
	-nsk*)
76c1b9
		os=-nsk
76c1b9
		;;
76c1b9
	# Preserve the version number of sinix5.
76c1b9
	-sinix5.*)
76c1b9
		os=`echo $os | sed -e 's|sinix|sysv|'`
76c1b9
		;;
76c1b9
	-sinix*)
76c1b9
		os=-sysv4
76c1b9
		;;
76c1b9
	-tpf*)
76c1b9
		os=-tpf
76c1b9
		;;
76c1b9
	-triton*)
76c1b9
		os=-sysv3
76c1b9
		;;
76c1b9
	-oss*)
76c1b9
		os=-sysv3
76c1b9
		;;
76c1b9
	-svr4)
76c1b9
		os=-sysv4
76c1b9
		;;
76c1b9
	-svr3)
76c1b9
		os=-sysv3
76c1b9
		;;
76c1b9
	-sysvr4)
76c1b9
		os=-sysv4
76c1b9
		;;
76c1b9
	# This must come after -sysvr4.
76c1b9
	-sysv*)
76c1b9
		;;
76c1b9
	-ose*)
76c1b9
		os=-ose
76c1b9
		;;
76c1b9
	-es1800*)
76c1b9
		os=-ose
76c1b9
		;;
76c1b9
	-xenix)
76c1b9
		os=-xenix
76c1b9
		;;
76c1b9
	-*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
76c1b9
		os=-mint
76c1b9
		;;
76c1b9
	-aros*)
76c1b9
		os=-aros
76c1b9
		;;
76c1b9
	-zvmoe)
76c1b9
		os=-zvmoe
76c1b9
		;;
76c1b9
	-dicos*)
76c1b9
		os=-dicos
76c1b9
		;;
76c1b9
	-nacl*)
76c1b9
		;;
76c1b9
	-none)
76c1b9
		;;
76c1b9
	*)
76c1b9
		# Get rid of the `-' at the beginning of $os.
76c1b9
		os=`echo $os | sed 's/[^-]*-//'`
76c1b9
		echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2
76c1b9
		exit 1
76c1b9
		;;
76c1b9
esac
76c1b9
else
76c1b9
76c1b9
# Here we handle the default operating systems that come with various machines.
76c1b9
# The value should be what the vendor currently ships out the door with their
76c1b9
# machine or put another way, the most popular os provided with the machine.
76c1b9
76c1b9
# Note that if you're going to try to match "-MANUFACTURER" here (say,
76c1b9
# "-sun"), then you have to tell the case statement up towards the top
76c1b9
# that MANUFACTURER isn't an operating system.  Otherwise, code above
76c1b9
# will signal an error saying that MANUFACTURER isn't an operating
76c1b9
# system, and we'll never get to this point.
76c1b9
76c1b9
case $basic_machine in
76c1b9
	score-*)
76c1b9
		os=-elf
76c1b9
		;;
76c1b9
	spu-*)
76c1b9
		os=-elf
76c1b9
		;;
76c1b9
	*-acorn)
76c1b9
		os=-riscix1.2
76c1b9
		;;
76c1b9
	arm*-rebel)
76c1b9
		os=-linux
76c1b9
		;;
76c1b9
	arm*-semi)
76c1b9
		os=-aout
76c1b9
		;;
76c1b9
	c4x-* | tic4x-*)
76c1b9
		os=-coff
76c1b9
		;;
76c1b9
	c8051-*)
76c1b9
		os=-elf
76c1b9
		;;
76c1b9
	hexagon-*)
76c1b9
		os=-elf
76c1b9
		;;
76c1b9
	tic54x-*)
76c1b9
		os=-coff
76c1b9
		;;
76c1b9
	tic55x-*)
76c1b9
		os=-coff
76c1b9
		;;
76c1b9
	tic6x-*)
76c1b9
		os=-coff
76c1b9
		;;
76c1b9
	# This must come before the *-dec entry.
76c1b9
	pdp10-*)
76c1b9
		os=-tops20
76c1b9
		;;
76c1b9
	pdp11-*)
76c1b9
		os=-none
76c1b9
		;;
76c1b9
	*-dec | vax-*)
76c1b9
		os=-ultrix4.2
76c1b9
		;;
76c1b9
	m68*-apollo)
76c1b9
		os=-domain
76c1b9
		;;
76c1b9
	i386-sun)
76c1b9
		os=-sunos4.0.2
76c1b9
		;;
76c1b9
	m68000-sun)
76c1b9
		os=-sunos3
76c1b9
		;;
76c1b9
	m68*-cisco)
76c1b9
		os=-aout
76c1b9
		;;
76c1b9
	mep-*)
76c1b9
		os=-elf
76c1b9
		;;
76c1b9
	mips*-cisco)
76c1b9
		os=-elf
76c1b9
		;;
76c1b9
	mips*-*)
76c1b9
		os=-elf
76c1b9
		;;
76c1b9
	or1k-*)
76c1b9
		os=-elf
76c1b9
		;;
76c1b9
	or32-*)
76c1b9
		os=-coff
76c1b9
		;;
76c1b9
	*-tti)	# must be before sparc entry or we get the wrong os.
76c1b9
		os=-sysv3
76c1b9
		;;
76c1b9
	sparc-* | *-sun)
76c1b9
		os=-sunos4.1.1
76c1b9
		;;
76c1b9
	*-be)
76c1b9
		os=-beos
76c1b9
		;;
76c1b9
	*-haiku)
76c1b9
		os=-haiku
76c1b9
		;;
76c1b9
	*-ibm)
76c1b9
		os=-aix
76c1b9
		;;
76c1b9
	*-knuth)
76c1b9
		os=-mmixware
76c1b9
		;;
76c1b9
	*-wec)
76c1b9
		os=-proelf
76c1b9
		;;
76c1b9
	*-winbond)
76c1b9
		os=-proelf
76c1b9
		;;
76c1b9
	*-oki)
76c1b9
		os=-proelf
76c1b9
		;;
76c1b9
	*-hp)
76c1b9
		os=-hpux
76c1b9
		;;
76c1b9
	*-hitachi)
76c1b9
		os=-hiux
76c1b9
		;;
76c1b9
	i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent)
76c1b9
		os=-sysv
76c1b9
		;;
76c1b9
	*-cbm)
76c1b9
		os=-amigaos
76c1b9
		;;
76c1b9
	*-dg)
76c1b9
		os=-dgux
76c1b9
		;;
76c1b9
	*-dolphin)
76c1b9
		os=-sysv3
76c1b9
		;;
76c1b9
	m68k-ccur)
76c1b9
		os=-rtu
76c1b9
		;;
76c1b9
	m88k-omron*)
76c1b9
		os=-luna
76c1b9
		;;
76c1b9
	*-next )
76c1b9
		os=-nextstep
76c1b9
		;;
76c1b9
	*-sequent)
76c1b9
		os=-ptx
76c1b9
		;;
76c1b9
	*-crds)
76c1b9
		os=-unos
76c1b9
		;;
76c1b9
	*-ns)
76c1b9
		os=-genix
76c1b9
		;;
76c1b9
	i370-*)
76c1b9
		os=-mvs
76c1b9
		;;
76c1b9
	*-next)
76c1b9
		os=-nextstep3
76c1b9
		;;
76c1b9
	*-gould)
76c1b9
		os=-sysv
76c1b9
		;;
76c1b9
	*-highlevel)
76c1b9
		os=-bsd
76c1b9
		;;
76c1b9
	*-encore)
76c1b9
		os=-bsd
76c1b9
		;;
76c1b9
	*-sgi)
76c1b9
		os=-irix
76c1b9
		;;
76c1b9
	*-siemens)
76c1b9
		os=-sysv4
76c1b9
		;;
76c1b9
	*-masscomp)
76c1b9
		os=-rtu
76c1b9
		;;
76c1b9
	f30[01]-fujitsu | f700-fujitsu)
76c1b9
		os=-uxpv
76c1b9
		;;
76c1b9
	*-rom68k)
76c1b9
		os=-coff
76c1b9
		;;
76c1b9
	*-*bug)
76c1b9
		os=-coff
76c1b9
		;;
76c1b9
	*-apple)
76c1b9
		os=-macos
76c1b9
		;;
76c1b9
	*-atari*)
76c1b9
		os=-mint
76c1b9
		;;
76c1b9
	*)
76c1b9
		os=-none
76c1b9
		;;
76c1b9
esac
76c1b9
fi
76c1b9
76c1b9
# Here we handle the case where we know the os, and the CPU type, but not the
76c1b9
# manufacturer.  We pick the logical manufacturer.
76c1b9
vendor=unknown
76c1b9
case $basic_machine in
76c1b9
	*-unknown)
76c1b9
		case $os in
76c1b9
			-riscix*)
76c1b9
				vendor=acorn
76c1b9
				;;
76c1b9
			-sunos*)
76c1b9
				vendor=sun
76c1b9
				;;
76c1b9
			-cnk*|-aix*)
76c1b9
				vendor=ibm
76c1b9
				;;
76c1b9
			-beos*)
76c1b9
				vendor=be
76c1b9
				;;
76c1b9
			-hpux*)
76c1b9
				vendor=hp
76c1b9
				;;
76c1b9
			-mpeix*)
76c1b9
				vendor=hp
76c1b9
				;;
76c1b9
			-hiux*)
76c1b9
				vendor=hitachi
76c1b9
				;;
76c1b9
			-unos*)
76c1b9
				vendor=crds
76c1b9
				;;
76c1b9
			-dgux*)
76c1b9
				vendor=dg
76c1b9
				;;
76c1b9
			-luna*)
76c1b9
				vendor=omron
76c1b9
				;;
76c1b9
			-genix*)
76c1b9
				vendor=ns
76c1b9
				;;
76c1b9
			-mvs* | -opened*)
76c1b9
				vendor=ibm
76c1b9
				;;
76c1b9
			-os400*)
76c1b9
				vendor=ibm
76c1b9
				;;
76c1b9
			-ptx*)
76c1b9
				vendor=sequent
76c1b9
				;;
76c1b9
			-tpf*)
76c1b9
				vendor=ibm
76c1b9
				;;
76c1b9
			-vxsim* | -vxworks* | -windiss*)
76c1b9
				vendor=wrs
76c1b9
				;;
76c1b9
			-aux*)
76c1b9
				vendor=apple
76c1b9
				;;
76c1b9
			-hms*)
76c1b9
				vendor=hitachi
76c1b9
				;;
76c1b9
			-mpw* | -macos*)
76c1b9
				vendor=apple
76c1b9
				;;
76c1b9
			-*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
76c1b9
				vendor=atari
76c1b9
				;;
76c1b9
			-vos*)
76c1b9
				vendor=stratus
76c1b9
				;;
76c1b9
		esac
76c1b9
		basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
76c1b9
		;;
76c1b9
esac
76c1b9
76c1b9
echo $basic_machine$os
76c1b9
exit
76c1b9
76c1b9
# Local variables:
76c1b9
# eval: (add-hook 'write-file-hooks 'time-stamp)
76c1b9
# time-stamp-start: "timestamp='"
76c1b9
# time-stamp-format: "%:y-%02m-%02d"
76c1b9
# time-stamp-end: "'"
76c1b9
# End: