home *** CD-ROM | disk | FTP | other *** search
/ Programming Win32 Under the API / ProgrammingWin32UnderTheApiPatVillani.iso / src / mingw-runtime-19991107 / w32api / config.sub < prev    next >
Encoding:
Text File  |  1999-08-02  |  26.1 KB  |  1,279 lines

  1. #! /bin/sh
  2. # Configuration validation subroutine script, version 1.1.
  3. #   Copyright (C) 1991, 92-97, 1998, 1999 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.
  7. #
  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.
  12. #
  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.
  17. #
  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.
  22.  
  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.
  27.  
  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.
  32.  
  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
  39. # configuration.
  40.  
  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.
  47.  
  48. if [ x$1 = x ]
  49. then
  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
  54.     exit 1
  55. fi
  56.  
  57. # First pass through any local machine types.
  58. case $1 in
  59.     *local*)
  60.         echo $1
  61.         exit 0
  62.         ;;
  63.     *)
  64.     ;;
  65. esac
  66.  
  67. # CYGNUS LOCAL marketing-names
  68. # Here we handle any "marketing" names - translating them to
  69. #  standard triplets
  70. case $1 in 
  71.     mips-tx39-elf)
  72.         set mipstx39-unknown-elf
  73.                 ;;
  74.     *)
  75.         ;;
  76. esac
  77. # END CYGNUS LOCAL marketing-names
  78.  
  79. # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
  80. # Here we must recognize all the valid KERNEL-OS combinations.
  81. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
  82. case $maybe_os in
  83.   linux-gnu*)
  84.     os=-$maybe_os
  85.     basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
  86.     ;;
  87.   *)
  88.     basic_machine=`echo $1 | sed 's/-[^-]*$//'`
  89.     if [ $basic_machine != $1 ]
  90.     then os=`echo $1 | sed 's/.*-/-/'`
  91.     else os=; fi
  92.     ;;
  93. esac
  94.  
  95. ### Let's recognize common machines as not being operating systems so
  96. ### that things like config.sub decstation-3100 work.  We also
  97. ### recognize some manufacturers as not being operating systems, so we
  98. ### can provide default operating systems below.
  99. case $os in
  100.     -sun*os*)
  101.         # Prevent following clause from handling this invalid input.
  102.         ;;
  103.     -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \
  104.     -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \
  105.     -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \
  106.     -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
  107.     -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
  108.     -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
  109.     -apple)
  110.         os=
  111.         basic_machine=$1
  112.         ;;
  113.     -sim | -cisco | -oki | -wec | -winbond )    # EGCS LOCAL
  114.         os=
  115.         basic_machine=$1
  116.         ;;
  117.     -scout)                        # EGCS LOCAL
  118.         ;;
  119.     -wrs)                        # EGCS LOCAL
  120.         os=vxworks
  121.         basic_machine=$1
  122.         ;;
  123.     -hiux*)
  124.         os=-hiuxwe2
  125.         ;;
  126.     -sco5)
  127.         os=-sco3.2v5
  128.         basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
  129.         ;;
  130.     -sco4)
  131.         os=-sco3.2v4
  132.         basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
  133.         ;;
  134.     -sco3.2.[4-9]*)
  135.         os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
  136.         basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
  137.         ;;
  138.     -sco3.2v[4-9]*)
  139.         # Don't forget version if it is 3.2v4 or newer.
  140.         basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
  141.         ;;
  142.     -sco*)
  143.         os=-sco3.2v2
  144.         basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
  145.         ;;
  146.     -udk*)
  147.         basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
  148.         ;;
  149.     -isc)
  150.         os=-isc2.2
  151.         basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
  152.         ;;
  153.     -clix*)
  154.         basic_machine=clipper-intergraph
  155.         ;;
  156.     -isc*)
  157.         basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
  158.         ;;
  159.     -lynx*)
  160.         os=-lynxos
  161.         ;;
  162.     -ptx*)
  163.         basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`
  164.         ;;
  165.     -windowsnt*)
  166.         os=`echo $os | sed -e 's/windowsnt/winnt/'`
  167.         ;;
  168.     -psos*)
  169.         os=-psos
  170.         ;;
  171. esac
  172.  
  173. # Decode aliases for certain CPU-COMPANY combinations.
  174. case $basic_machine in
  175.     # Recognize the basic CPU types without company name.
  176.     # Some are omitted here because they have special meanings below.
  177.     tahoe | i860 | m32r | m68k | m68000 | m88k | ns32k | arc | arm \
  178.         | arme[lb] | pyramid | mn10200 | mn10300 \
  179.         | tron | a29k | 580 | i960 | h8300 \
  180.         | hppa | hppa1.0 | hppa1.1 | hppa2.0 | hppa2.0w | hppa2.0n \
  181.         | alpha | alphaev[45678] | alphaev56 | alphapca5[67] \
  182.         | we32k | ns16k | clipper | i370 | sh | powerpc | powerpcle \
  183.         | 1750a | dsp16xx | pdp11 \
  184.         | mips64 | mipsel | mips64el | mips64orion | mips64orionel \
  185.         | mipstx39 | mipstx39el \
  186.         | sparc | sparclet | sparclite | sparc64 | sparc86x | v850 \
  187.         | c4x)
  188.         basic_machine=$basic_machine-unknown
  189.         ;;
  190.     m88110 | m680[012346]0 | m683?2 | m68360 | m5200 | z8k | v70 \
  191.         | h8500 | w65 | fr30) # CYGNUS / EGCS LOCAL
  192.         basic_machine=$basic_machine-unknown
  193.         ;;
  194.     strongarm) # CYGNUS LOCAL nickc/strongarm
  195.         basic_machine=$basic_machine-unknown
  196.         ;;
  197.     thumb)
  198.         basic_machine=$basic_machine-unknown
  199.         ;;
  200.     mips64vr4300 | mips64vr4300el) # EGCS LOCAL jsmith/vr4300
  201.         basic_machine=$basic_machine-unknown
  202.         ;;
  203.     mips64vr4100 | mips64vr4100el) # EGCS LOCAL jsmith/vr4100
  204.         basic_machine=$basic_machine-unknown
  205.         ;;
  206.     mips64vr5000 | mips64vr5000el) # EGCS LOCAL ian/vr5000
  207.         basic_machine=$basic_machine-unknown
  208.         ;;
  209.     mips16)
  210.         basic_machine=$basic_machine-unknown
  211.         ;;
  212.     tic30) # CYGNUS LOCAL ian/tic30
  213.         basic_machine=$basic_machine-unknown
  214.         ;;
  215.     c30) # CYGNUS LOCAL ian/tic30
  216.         basic_machine=tic30-unknown
  217.         ;;
  218.  
  219.     v850e)                # CYGNUS LOCAL jtc/v850
  220.         basic_machine=$basic_machine-unknown
  221.         ;;
  222.     v850ea)                # CYGNUS LOCAL jtc/v850
  223.         basic_machine=$basic_machine-unknown
  224.         ;;
  225.     d10v)
  226.         basic_machine=$basic_machine-unknown
  227.         ;;
  228.     d30v)                # CYGNUS LOCAL hunt/d30v
  229.         basic_machine=$basic_machine-unknown
  230.         ;;
  231.     # We use `pc' rather than `unknown'
  232.     # because (1) that's what they normally are, and
  233.     # (2) the word "unknown" tends to confuse beginning users.
  234.     i[34567]86)
  235.       basic_machine=$basic_machine-pc
  236.       ;;
  237.     # Object if more than one company name word.
  238.     *-*-*)
  239.         echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
  240.         exit 1
  241.         ;;
  242.     # Recognize the basic CPU types with company name.
  243.     vax-* | tahoe-* | i[34567]86-* | i860-* | m32r-* | m68k-* | m68000-* \
  244.           | m88k-* | sparc-* | ns32k-* | fx80-* | arc-* | arm-* | c[123]* \
  245.           | mips-* | pyramid-* | tron-* | a29k-* | romp-* | rs6000-* \
  246.           | power-* | none-* | 580-* | cray2-* | h8300-* | i960-* \
  247.           | xmp-* | ymp-* \
  248.           | hppa-* | hppa1.0-* | hppa1.1-* \
  249.           | hppa2.0-* | hppa2.0w-* | hppa2.0n-* \
  250.           | alpha-* | alphaev[45678]-* | alphaev56-* | alphapca5[67]-* \
  251.           | we32k-* | cydra-* | ns16k-* | pn-* | np1-* \
  252.           | xps100-* | clipper-* | orion-* \
  253.           | sparclite-* | pdp11-* | sh-* | powerpc-* | powerpcle-* \
  254.           | sparc64-* | sparcv9-* | sparc86x-* | mips64-* | mipsel-* \
  255.           | mips64el-* | mips64orion-* | mips64orionel-*  \
  256.           | mipstx39-* | mipstx39el-* \
  257.           | f301-* | arm*-* \
  258.           | fr30-*) # CYGNUS LOCAL
  259.         ;;
  260.     m88110-* | m680[01234]0-* | m683?2-* | m68360-* | z8k-* | h8500-* | d10v-*) # EGCS LOCAL
  261.         ;;
  262.     strongarm-*) # CYGNUS LOCAL nickc/strongarm
  263.         ;;
  264.     thumb-*) # EGCS LOCAL angela/thumb
  265.         ;;
  266.     v850-*) # EGCS LOCAL
  267.             ;;
  268.     v850e-*) # CYGNUS LOCAL
  269.             ;;
  270.     v850ea-*) # CYGNUS LOCAL
  271.             ;;
  272.     d30v-*) # EGCS LOCAL
  273.             ;;
  274.     mips64vr4300-* | mips64vr4300el-*) # EGCS LOCAL jsmith/vr4300
  275.         ;;
  276.     mips64vr4100-* | mips64vr4100el-*) # EGCS LOCAL jsmith/vr4100
  277.         ;;
  278.     mips16-*) # EGCS LOCAL krk/mips16
  279.         ;;
  280.     tic30-*) # EGCS LOCAL ian/tic30
  281.         ;;
  282.     c30-*) # EGCS LOCAL ian/tic30
  283.         basic_machine=tic30-unknown
  284.         ;;
  285.     # Recognize the various machine names and aliases which stand
  286.     # for a CPU type and a company and sometimes even an OS.
  287.     386bsd)                        # EGCS LOCAL
  288.         basic_machine=i386-unknown
  289.         os=-bsd
  290.         ;;
  291.     3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
  292.         basic_machine=m68000-att
  293.         ;;
  294.     3b*)
  295.         basic_machine=we32k-att
  296.         ;;
  297.     a29khif)                    # EGCS LOCAL
  298.         basic_machine=a29k-amd
  299.         os=-udi
  300.         ;;
  301.     adobe68k)                    # EGCS LOCAL
  302.         basic_machine=m68010-adobe
  303.         os=-scout
  304.         ;;
  305.     alliant | fx80)
  306.         basic_machine=fx80-alliant
  307.         ;;
  308.     altos | altos3068)
  309.         basic_machine=m68k-altos
  310.         ;;
  311.     am29k)
  312.         basic_machine=a29k-none
  313.         os=-bsd
  314.         ;;
  315.     amdahl)
  316.         basic_machine=580-amdahl
  317.         os=-sysv
  318.         ;;
  319.     amiga | amiga-*)
  320.         basic_machine=m68k-cbm
  321.         ;;
  322.     amigaos | amigados)
  323.         basic_machine=m68k-cbm
  324.         os=-amigaos
  325.         ;;
  326.     amigaunix | amix)
  327.         basic_machine=m68k-cbm
  328.         os=-sysv4
  329.         ;;
  330.     apollo68)
  331.         basic_machine=m68k-apollo
  332.         os=-sysv
  333.         ;;
  334.     apollo68bsd)                    # EGCS LOCAL
  335.         basic_machine=m68k-apollo
  336.         os=-bsd
  337.         ;;
  338.     aux)
  339.         basic_machine=m68k-apple
  340.         os=-aux
  341.         ;;
  342.     balance)
  343.         basic_machine=ns32k-sequent
  344.         os=-dynix
  345.         ;;
  346.     convex-c1)
  347.         basic_machine=c1-convex
  348.         os=-bsd
  349.         ;;
  350.     convex-c2)
  351.         basic_machine=c2-convex
  352.         os=-bsd
  353.         ;;
  354.     convex-c32)
  355.         basic_machine=c32-convex
  356.         os=-bsd
  357.         ;;
  358.     convex-c34)
  359.         basic_machine=c34-convex
  360.         os=-bsd
  361.         ;;
  362.     convex-c38)
  363.         basic_machine=c38-convex
  364.         os=-bsd
  365.         ;;
  366.     cray | ymp)
  367.         basic_machine=ymp-cray
  368.         os=-unicos
  369.         ;;
  370.     cray2)
  371.         basic_machine=cray2-cray
  372.         os=-unicos
  373.         ;;
  374.     [ctj]90-cray)
  375.         basic_machine=c90-cray
  376.         os=-unicos
  377.         ;;
  378.     crds | unos)
  379.         basic_machine=m68k-crds
  380.         ;;
  381.     da30 | da30-*)
  382.         basic_machine=m68k-da30
  383.         ;;
  384.     decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn)
  385.         basic_machine=mips-dec
  386.         ;;
  387.     delta | 3300 | motorola-3300 | motorola-delta \
  388.           | 3300-motorola | delta-motorola)
  389.         basic_machine=m68k-motorola
  390.         ;;
  391.     delta88)
  392.         basic_machine=m88k-motorola
  393.         os=-sysv3
  394.         ;;
  395.     dpx20 | dpx20-*)
  396.         basic_machine=rs6000-bull
  397.         os=-bosx
  398.         ;;
  399.     dpx2* | dpx2*-bull)
  400.         basic_machine=m68k-bull
  401.         os=-sysv3
  402.         ;;
  403.     ebmon29k)
  404.         basic_machine=a29k-amd
  405.         os=-ebmon
  406.         ;;
  407.     elxsi)
  408.         basic_machine=elxsi-elxsi
  409.         os=-bsd
  410.         ;;
  411.     encore | umax | mmax)
  412.         basic_machine=ns32k-encore
  413.         ;;
  414.     es1800 | OSE68k | ose68k | ose | OSE)        # EGCS LOCAL
  415.         basic_machine=m68k-ericsson
  416.         os=-ose
  417.         ;;
  418.     fx2800)
  419.         basic_machine=i860-alliant
  420.         ;;
  421.     genix)
  422.         basic_machine=ns32k-ns
  423.         ;;
  424.     gmicro)
  425.         basic_machine=tron-gmicro
  426.         os=-sysv
  427.         ;;
  428.     h3050r* | hiux*)
  429.         basic_machine=hppa1.1-hitachi
  430.         os=-hiuxwe2
  431.         ;;
  432.     h8300hms)
  433.         basic_machine=h8300-hitachi
  434.         os=-hms
  435.         ;;
  436.     h8300xray)                    # EGCS LOCAL
  437.         basic_machine=h8300-hitachi
  438.         os=-xray
  439.         ;;
  440.     h8500hms)                    # EGCS LOCAL
  441.         basic_machine=h8500-hitachi
  442.         os=-hms
  443.         ;;
  444.     harris)
  445.         basic_machine=m88k-harris
  446.         os=-sysv3
  447.         ;;
  448.     hp300-*)
  449.         basic_machine=m68k-hp
  450.         ;;
  451.     hp300bsd)
  452.         basic_machine=m68k-hp
  453.         os=-bsd
  454.         ;;
  455.     hp300hpux)
  456.         basic_machine=m68k-hp
  457.         os=-hpux
  458.         ;;
  459.         w89k-*)                        # EGCS LOCAL
  460.                 basic_machine=hppa1.1-winbond
  461.                 os=-proelf
  462.                 ;;
  463.         op50n-*)                    # EGCS LOCAL
  464.                 basic_machine=hppa1.1-oki
  465.                 os=-proelf
  466.                 ;;
  467.         op60c-*)                    # EGCS LOCAL
  468.                 basic_machine=hppa1.1-oki
  469.                 os=-proelf
  470.                 ;;
  471.         hppro)                        # EGCS LOCAL
  472.                 basic_machine=hppa1.1-hp
  473.                 os=-proelf
  474.                 ;;
  475.     hp3k9[0-9][0-9] | hp9[0-9][0-9])
  476.         basic_machine=hppa1.0-hp
  477.         ;;
  478.     hp9k2[0-9][0-9] | hp9k31[0-9])
  479.         basic_machine=m68000-hp
  480.         ;;
  481.     hp9k3[2-9][0-9])
  482.         basic_machine=m68k-hp
  483.         ;;
  484.     hp9k6[0-9][0-9] | hp6[0-9][0-9] )
  485.         basic_machine=hppa1.0-hp
  486.         ;;
  487.     hp9k7[0-79][0-9] | hp7[0-79][0-9] )
  488.         basic_machine=hppa1.1-hp
  489.         ;;
  490.     hp9k78[0-9] | hp78[0-9] )
  491.         # FIXME: really hppa2.0-hp
  492.         basic_machine=hppa1.1-hp
  493.         ;;
  494.     hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | \
  495.     hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893 )
  496.         # FIXME: really hppa2.0-hp
  497.         basic_machine=hppa1.1-hp
  498.         ;;
  499.     hp9k8[0-9][13679] | hp8[0-9][13679] )
  500.         basic_machine=hppa1.1-hp
  501.         ;;
  502.     hp9k8[0-9][0-9] | hp8[0-9][0-9])
  503.         basic_machine=hppa1.0-hp
  504.         ;;
  505.     hppa-next)
  506.         os=-nextstep3
  507.         ;;
  508.     hppaosf)                    # EGCS LOCAL
  509.         basic_machine=hppa1.1-hp
  510.         os=-osf
  511.         ;;
  512.     i370-ibm* | ibm*)
  513.         basic_machine=i370-ibm
  514.         os=-mvs
  515.         ;;
  516. # I'm not sure what "Sysv32" means.  Should this be sysv3.2?
  517.     i[34567]86v32)
  518.         basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
  519.         os=-sysv32
  520.         ;;
  521.     i[34567]86v4*)
  522.         basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
  523.         os=-sysv4
  524.         ;;
  525.     i[34567]86v)
  526.         basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
  527.         os=-sysv
  528.         ;;
  529.     i[34567]86sol2)
  530.         basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
  531.         os=-solaris2
  532.         ;;
  533.     i386mach)                    # EGCS LOCAL
  534.         basic_machine=i386-mach
  535.         os=-mach
  536.         ;;
  537.     i386-vsta | vsta)                # EGCS LOCAL
  538.         basic_machine=i386-unknown
  539.         os=-vsta
  540.         ;;
  541.     i386-go32 | go32)                # EGCS LOCAL
  542.         basic_machine=i386-unknown
  543.         os=-go32
  544.         ;;
  545.     i386-mingw32 | mingw32)
  546.         basic_machine=i386-unknown
  547.         os=-mingw32
  548.         ;;
  549.     iris | iris4d)
  550.         basic_machine=mips-sgi
  551.         case $os in
  552.             -irix*)
  553.             ;;
  554.             *)
  555.             os=-irix4
  556.             ;;
  557.         esac
  558.         ;;
  559.     isi68 | isi)
  560.         basic_machine=m68k-isi
  561.         os=-sysv
  562.         ;;
  563.     m88k-omron*)
  564.         basic_machine=m88k-omron
  565.         ;;
  566.     magnum | m3230)
  567.         basic_machine=mips-mips
  568.         os=-sysv
  569.         ;;
  570.     merlin)
  571.         basic_machine=ns32k-utek
  572.         os=-sysv
  573.         ;;
  574.     miniframe)
  575.         basic_machine=m68000-convergent
  576.         ;;
  577.     mipsel*-linux*)
  578.         basic_machine=mipsel-unknown
  579.         os=-linux-gnu
  580.         ;;
  581.     mips*-linux*)
  582.         basic_machine=mips-unknown
  583.         os=-linux-gnu
  584.         ;;
  585.     mips3*-*)
  586.         basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
  587.         ;;
  588.     mips3*)
  589.         basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
  590.         ;;
  591.     monitor)                    # EGCS LOCAL
  592.         basic_machine=m68k-rom68k
  593.         os=-coff
  594.         ;;
  595.     msdos)                        # EGCS LOCAL
  596.         basic_machine=i386-unknown    
  597.         os=-msdos
  598.         ;;
  599.     ncr3000)
  600.         basic_machine=i486-ncr
  601.         os=-sysv4
  602.         ;;
  603.     netbsd386)
  604.         basic_machine=i386-unknown        # EGCS LOCAL
  605.         os=-netbsd
  606.         ;;
  607.     netwinder)
  608.         basic_machine=armv4l-corel
  609.         os=-linux
  610.         ;;
  611.     news | news700 | news800 | news900)
  612.         basic_machine=m68k-sony
  613.         os=-newsos
  614.         ;;
  615.     news1000)
  616.         basic_machine=m68030-sony
  617.         os=-newsos
  618.         ;;
  619.     news-3600 | risc-news)
  620.         basic_machine=mips-sony
  621.         os=-newsos
  622.         ;;
  623.     necv70)                        # EGCS LOCAL
  624.         basic_machine=v70-nec
  625.         os=-sysv
  626.         ;;
  627.     next | m*-next )
  628.         basic_machine=m68k-next
  629.         case $os in
  630.             -nextstep* )
  631.             ;;
  632.             -ns2*)
  633.               os=-nextstep2
  634.             ;;
  635.             *)
  636.               os=-nextstep3
  637.             ;;
  638.         esac
  639.         ;;
  640.     nh3000)
  641.         basic_machine=m68k-harris
  642.         os=-cxux
  643.         ;;
  644.     nh[45]000)
  645.         basic_machine=m88k-harris
  646.         os=-cxux
  647.         ;;
  648.     nindy960)
  649.         basic_machine=i960-intel
  650.         os=-nindy
  651.         ;;
  652.     mon960)                        # EGCS LOCAL
  653.         basic_machine=i960-intel
  654.         os=-mon960
  655.         ;;
  656.     np1)
  657.         basic_machine=np1-gould
  658.         ;;
  659.     OSE68000 | ose68000)                # EGCS LOCAL
  660.         basic_machine=m68000-ericsson
  661.         os=-ose
  662.         ;;
  663.     os68k)                        # EGCS LOCAL
  664.         basic_machine=m68k-none
  665.         os=-os68k
  666.         ;;
  667.     pa-hitachi)
  668.         basic_machine=hppa1.1-hitachi
  669.         os=-hiuxwe2
  670.         ;;
  671.     paragon)
  672.         basic_machine=i860-intel
  673.         os=-osf
  674.         ;;
  675.     pbd)
  676.         basic_machine=sparc-tti
  677.         ;;
  678.     pbb)
  679.         basic_machine=m68k-tti
  680.         ;;
  681.         pc532 | pc532-*)
  682.         basic_machine=ns32k-pc532
  683.         ;;
  684.     pentium | p5 | k5 | nexen)
  685.         basic_machine=i586-pc
  686.         ;;
  687.     pentiumpro | p6 | k6 | 6x86)
  688.         basic_machine=i686-pc
  689.         ;;
  690.     pentiumii | pentium2)
  691.         basic_machine=i786-pc
  692.         ;;
  693.     pentium-* | p5-* | k5-* | nexen-*)
  694.         basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`
  695.         ;;
  696.     pentiumpro-* | p6-* | k6-* | 6x86-*)
  697.         basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
  698.         ;;
  699.     pentiumii-* | pentium2-*)
  700.         basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'`
  701.         ;;
  702.     pn)
  703.         basic_machine=pn-gould
  704.         ;;
  705.     power)    basic_machine=rs6000-ibm
  706.         ;;
  707.     ppc)    basic_machine=powerpc-unknown
  708.             ;;
  709.     ppc-*)    basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
  710.         ;;
  711.     ppcle | powerpclittle | ppc-le | powerpc-little)
  712.         basic_machine=powerpcle-unknown
  713.             ;;
  714.     ppcle-* | powerpclittle-*)
  715.         basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'`
  716.         ;;
  717.     ps2)
  718.         basic_machine=i386-ibm
  719.         ;;
  720.     rom68k)                        # EGCS LOCAL
  721.         basic_machine=m68k-rom68k
  722.         os=-coff
  723.         ;;
  724.     rm[46]00)
  725.         basic_machine=mips-siemens
  726.         ;;
  727.     rtpc | rtpc-*)
  728.         basic_machine=romp-ibm
  729.         ;;
  730.     sa29200)                    # EGCS LOCAL
  731.         basic_machine=a29k-amd
  732.         os=-udi
  733.         ;;
  734.     sequent)
  735.         basic_machine=i386-sequent
  736.         ;;
  737.     sh)
  738.         basic_machine=sh-hitachi
  739.         os=-hms
  740.         ;;
  741.     sparclite-wrs)                    # EGCS LOCAL
  742.         basic_machine=sparclite-wrs
  743.         os=-vxworks
  744.         ;;
  745.     sps7)
  746.         basic_machine=m68k-bull
  747.         os=-sysv2
  748.         ;;
  749.     spur)
  750.         basic_machine=spur-unknown
  751.         ;;
  752.     st2000)                        # EGCS LOCAL
  753.         basic_machine=m68k-tandem
  754.         ;;
  755.     stratus)                    # EGCS LOCAL
  756.         basic_machine=i860-stratus
  757.         os=-sysv4
  758.         ;;
  759.     sun2)
  760.         basic_machine=m68000-sun
  761.         ;;
  762.     sun2os3)
  763.         basic_machine=m68000-sun
  764.         os=-sunos3
  765.         ;;
  766.     sun2os4)
  767.         basic_machine=m68000-sun
  768.         os=-sunos4
  769.         ;;
  770.     sun3os3)
  771.         basic_machine=m68k-sun
  772.         os=-sunos3
  773.         ;;
  774.     sun3os4)
  775.         basic_machine=m68k-sun
  776.         os=-sunos4
  777.         ;;
  778.     sun4os3)
  779.         basic_machine=sparc-sun
  780.         os=-sunos3
  781.         ;;
  782.     sun4os4)
  783.         basic_machine=sparc-sun
  784.         os=-sunos4
  785.         ;;
  786.     sun4sol2)
  787.         basic_machine=sparc-sun
  788.         os=-solaris2
  789.         ;;
  790.     sun3 | sun3-*)
  791.         basic_machine=m68k-sun
  792.         ;;
  793.     sun4)
  794.         basic_machine=sparc-sun
  795.         ;;
  796.     sun386 | sun386i | roadrunner)
  797.         basic_machine=i386-sun
  798.         ;;
  799.     symmetry)
  800.         basic_machine=i386-sequent
  801.         os=-dynix
  802.         ;;
  803.     tx39)
  804.         basic_machine=mipstx39-unknown
  805.         ;;
  806.     tx39el)
  807.         basic_machine=mipstx39el-unknown
  808.         ;;
  809.     tower | tower-32)
  810.         basic_machine=m68k-ncr
  811.         ;;
  812.     udi29k)
  813.         basic_machine=a29k-amd
  814.         os=-udi
  815.         ;;
  816.     ultra3)
  817.         basic_machine=a29k-nyu
  818.         os=-sym1
  819.         ;;
  820.     v810 | necv810)                    # EGCS LOCAL
  821.         basic_machine=v810-nec
  822.         os=-none
  823.         ;;
  824.     vaxv)
  825.         basic_machine=vax-dec
  826.         os=-sysv
  827.         ;;
  828.     vms)
  829.         basic_machine=vax-dec
  830.         os=-vms
  831.         ;;
  832.     vpp*|vx|vx-*)
  833.                basic_machine=f301-fujitsu
  834.                ;;
  835.     vxworks960)
  836.         basic_machine=i960-wrs
  837.         os=-vxworks
  838.         ;;
  839.     vxworks68)
  840.         basic_machine=m68k-wrs
  841.         os=-vxworks
  842.         ;;
  843.     vxworks29k)
  844.         basic_machine=a29k-wrs
  845.         os=-vxworks
  846.         ;;
  847.     w65*)                        # EGCS LOCAL
  848.          basic_machine=w65-wdc
  849.          os=-none
  850.         ;;
  851.     xmp)
  852.         basic_machine=xmp-cray
  853.         os=-unicos
  854.         ;;
  855.         xps | xps100)
  856.         basic_machine=xps100-honeywell
  857.         ;;
  858.     z8k-*-coff)                    # EGCS LOCAL
  859.         basic_machine=z8k-unknown
  860.         os=-sim
  861.         ;;
  862.     none)
  863.         basic_machine=none-none
  864.         os=-none
  865.         ;;
  866.  
  867. # Here we handle the default manufacturer of certain CPU types.  It is in
  868. # some cases the only manufacturer, in others, it is the most popular.
  869.     w89k)                        # EGCS LOCAL
  870.         basic_machine=hppa1.1-winbond
  871.         ;;
  872.     op50n)                        # EGCS LOCAL
  873.         basic_machine=hppa1.1-oki
  874.         ;;
  875.     op60c)                        # EGCS LOCAL
  876.         basic_machine=hppa1.1-oki
  877.         ;;
  878.     mips)
  879.         if [ x$os = x-linux-gnu ]; then
  880.             basic_machine=mips-unknown
  881.         else
  882.             basic_machine=mips-mips
  883.         fi
  884.         ;;
  885.     romp)
  886.         basic_machine=romp-ibm
  887.         ;;
  888.     rs6000)
  889.         basic_machine=rs6000-ibm
  890.         ;;
  891.     vax)
  892.         basic_machine=vax-dec
  893.         ;;
  894.     pdp11)
  895.         basic_machine=pdp11-dec
  896.         ;;
  897.     we32k)
  898.         basic_machine=we32k-att
  899.         ;;
  900.     sparc | sparcv9)
  901.         basic_machine=sparc-sun
  902.         ;;
  903.         cydra)
  904.         basic_machine=cydra-cydrome
  905.         ;;
  906.     orion)
  907.         basic_machine=orion-highlevel
  908.         ;;
  909.     orion105)
  910.         basic_machine=clipper-highlevel
  911.         ;;
  912.     mac | mpw | mac-mpw)                # EGCS LOCAL
  913.         basic_machine=m68k-apple
  914.         ;;
  915.     pmac | pmac-mpw)                # EGCS LOCAL
  916.         basic_machine=powerpc-apple
  917.         ;;
  918.      c4x*)
  919.          basic_machine=c4x-none
  920.          os=-coff
  921.           ;;
  922.     *)
  923.         echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
  924.         exit 1
  925.         ;;
  926. esac
  927.  
  928. # Here we canonicalize certain aliases for manufacturers.
  929. case $basic_machine in
  930.     *-digital*)
  931.         basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
  932.         ;;
  933.     *-commodore*)
  934.         basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
  935.         ;;
  936.     *)
  937.         ;;
  938. esac
  939.  
  940. # Decode manufacturer-specific aliases for certain operating systems.
  941.  
  942. if [ x"$os" != x"" ]
  943. then
  944. case $os in
  945.         # First match some system type aliases
  946.         # that might get confused with valid system types.
  947.     # -solaris* is a basic system type, with this one exception.
  948.     -solaris1 | -solaris1.*)
  949.         os=`echo $os | sed -e 's|solaris1|sunos4|'`
  950.         ;;
  951.     -solaris)
  952.         os=-solaris2
  953.         ;;
  954.     -svr4*)
  955.         os=-sysv4
  956.         ;;
  957.     -unixware*)
  958.         os=-sysv4.2uw
  959.         ;;
  960.     -gnu/linux*)
  961.         os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
  962.         ;;
  963.     # First accept the basic system types.
  964.     # The portable systems comes first.
  965.     # Each alternative MUST END IN A *, to match a version number.
  966.     # -sysv* is not here because it comes later, after sysvr4.
  967.     -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
  968.           | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\
  969.           | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \
  970.           | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \
  971.           | -aos* \
  972.           | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
  973.           | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
  974.           | -hiux* | -386bsd* | -netbsd* | -openbsd* | -freebsd* | -riscix* \
  975.           | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
  976.           | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
  977.           | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
  978.           | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
  979.           | -mingw32* | -linux-gnu* | -uxpv* | -beos* | -mpeix* | -udk* \
  980.           | -interix* )
  981.     # Remember, each alternative MUST END IN *, to match a version number.
  982.         ;;
  983.     # EGCS LOCAL
  984.     -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \
  985.           | -windows* | -osx | -abug |  -netware* | -os9* | -beos* \
  986.           | -macos* | -mpw* | -magic* | -mon960* | -lnews* )
  987.         ;;
  988.     -mac*)
  989.         os=`echo $os | sed -e 's|mac|macos|'`
  990.         ;;
  991.     # END EGCS LOCAL
  992.     -linux*)
  993.         os=`echo $os | sed -e 's|linux|linux-gnu|'`
  994.         ;;
  995.     -sunos5*)
  996.         os=`echo $os | sed -e 's|sunos5|solaris2|'`
  997.         ;;
  998.     -sunos6*)
  999.         os=`echo $os | sed -e 's|sunos6|solaris3|'`
  1000.         ;;
  1001.     -osfrose*)
  1002.         os=-osfrose
  1003.         ;;
  1004.     -osf*)
  1005.         os=-osf
  1006.         ;;
  1007.     -utek*)
  1008.         os=-bsd
  1009.         ;;
  1010.     -dynix*)
  1011.         os=-bsd
  1012.         ;;
  1013.     -acis*)
  1014.         os=-aos
  1015.         ;;
  1016.     -386bsd)                    # EGCS LOCAL
  1017.         os=-bsd
  1018.         ;;
  1019.     -ctix* | -uts*)
  1020.         os=-sysv
  1021.         ;;
  1022.     -ns2 )
  1023.             os=-nextstep2
  1024.         ;;
  1025.     # Preserve the version number of sinix5.
  1026.     -sinix5.*)
  1027.         os=`echo $os | sed -e 's|sinix|sysv|'`
  1028.         ;;
  1029.     -sinix*)
  1030.         os=-sysv4
  1031.         ;;
  1032.     -triton*)
  1033.         os=-sysv3
  1034.         ;;
  1035.     -oss*)
  1036.         os=-sysv3
  1037.         ;;
  1038.     -svr4)
  1039.         os=-sysv4
  1040.         ;;
  1041.     -svr3)
  1042.         os=-sysv3
  1043.         ;;
  1044.     -sysvr4)
  1045.         os=-sysv4
  1046.         ;;
  1047.     # This must come after -sysvr4.
  1048.     -sysv*)
  1049.         ;;
  1050.     -ose*)                        # EGCS LOCAL
  1051.         os=-ose
  1052.         ;;
  1053.     -es1800*)                    # EGCS LOCAL
  1054.         os=-ose
  1055.         ;;
  1056.     -xenix)
  1057.         os=-xenix
  1058.         ;;
  1059.     -none)
  1060.         ;;
  1061.     *)
  1062.         # Get rid of the `-' at the beginning of $os.
  1063.         os=`echo $os | sed 's/[^-]*-//'`
  1064.         echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2
  1065.         exit 1
  1066.         ;;
  1067. esac
  1068. else
  1069.  
  1070. # Here we handle the default operating systems that come with various machines.
  1071. # The value should be what the vendor currently ships out the door with their
  1072. # machine or put another way, the most popular os provided with the machine.
  1073.  
  1074. # Note that if you're going to try to match "-MANUFACTURER" here (say,
  1075. # "-sun"), then you have to tell the case statement up towards the top
  1076. # that MANUFACTURER isn't an operating system.  Otherwise, code above
  1077. # will signal an error saying that MANUFACTURER isn't an operating
  1078. # system, and we'll never get to this point.
  1079.  
  1080. case $basic_machine in
  1081.     *-acorn)
  1082.         os=-riscix1.2
  1083.         ;;
  1084.     arm*-corel)
  1085.         os=-linux
  1086.         ;;
  1087.     arm*-semi)
  1088.         os=-aout
  1089.         ;;
  1090.         pdp11-*)
  1091.         os=-none
  1092.         ;;
  1093.     *-dec | vax-*)
  1094.         os=-ultrix4.2
  1095.         ;;
  1096.     m68*-apollo)
  1097.         os=-domain
  1098.         ;;
  1099.     i386-sun)
  1100.         os=-sunos4.0.2
  1101.         ;;
  1102.     m68000-sun)
  1103.         os=-sunos3
  1104.         # This also exists in the configure program, but was not the
  1105.         # default.
  1106.         # os=-sunos4
  1107.         ;;
  1108.     m68*-cisco)                    # EGCS LOCAL
  1109.         os=-aout
  1110.         ;;
  1111.     mips*-cisco)                    # EGCS LOCAL
  1112.         os=-elf
  1113.         ;;
  1114.         mips*-*)                                        # EGCS LOCAL
  1115.                 os=-elf
  1116.                 ;;
  1117.     *-tti)    # must be before sparc entry or we get the wrong os.
  1118.         os=-sysv3
  1119.         ;;
  1120.     sparc-* | *-sun)
  1121.         os=-sunos4.1.1
  1122.         ;;
  1123.     *-be)
  1124.         os=-beos
  1125.         ;;
  1126.     *-ibm)
  1127.         os=-aix
  1128.         ;;
  1129.     *-wec)                        # EGCS LOCAL
  1130.         os=-proelf
  1131.         ;;
  1132.     *-winbond)                    # EGCS LOCAL
  1133.         os=-proelf
  1134.         ;;
  1135.     *-oki)                        # EGCS LOCAL
  1136.         os=-proelf
  1137.         ;;
  1138.     *-hp)
  1139.         os=-hpux
  1140.         ;;
  1141.     *-hitachi)
  1142.         os=-hiux
  1143.         ;;
  1144.     i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent)
  1145.         os=-sysv
  1146.         ;;
  1147.     *-cbm)
  1148.         os=-amigaos
  1149.         ;;
  1150.     *-dg)
  1151.         os=-dgux
  1152.         ;;
  1153.     *-dolphin)
  1154.         os=-sysv3
  1155.         ;;
  1156.     m68k-ccur)
  1157.         os=-rtu
  1158.         ;;
  1159.     m88k-omron*)
  1160.         os=-luna
  1161.         ;;
  1162.     *-next )
  1163.         os=-nextstep
  1164.         ;;
  1165.     *-sequent)
  1166.         os=-ptx
  1167.         ;;
  1168.     *-crds)
  1169.         os=-unos
  1170.         ;;
  1171.     *-ns)
  1172.         os=-genix
  1173.         ;;
  1174.     i370-*)
  1175.         os=-mvs
  1176.         ;;
  1177.     *-next)
  1178.         os=-nextstep3
  1179.         ;;
  1180.         *-gould)
  1181.         os=-sysv
  1182.         ;;
  1183.         *-highlevel)
  1184.         os=-bsd
  1185.         ;;
  1186.     *-encore)
  1187.         os=-bsd
  1188.         ;;
  1189.         *-sgi)
  1190.         os=-irix
  1191.         ;;
  1192.         *-siemens)
  1193.         os=-sysv4
  1194.         ;;
  1195.     *-masscomp)
  1196.         os=-rtu
  1197.         ;;
  1198.     f301-fujitsu)
  1199.         os=-uxpv
  1200.         ;;
  1201.     *-rom68k)                    # EGCS LOCAL
  1202.         os=-coff
  1203.         ;;
  1204.     *-*bug)                        # EGCS LOCAL
  1205.         os=-coff
  1206.         ;;
  1207.     *-apple)                    # EGCS LOCAL
  1208.         os=-macos
  1209.         ;;
  1210.     *)
  1211.         os=-none
  1212.         ;;
  1213. esac
  1214. fi
  1215.  
  1216. # Here we handle the case where we know the os, and the CPU type, but not the
  1217. # manufacturer.  We pick the logical manufacturer.
  1218. vendor=unknown
  1219. case $basic_machine in
  1220.     *-unknown)
  1221.         case $os in
  1222.             -riscix*)
  1223.                 vendor=acorn
  1224.                 ;;
  1225.             -sunos*)
  1226.                 vendor=sun
  1227.                 ;;
  1228.             -aix*)
  1229.                 vendor=ibm
  1230.                 ;;
  1231.             -beos*)
  1232.                 vendor=be
  1233.                 ;;
  1234.             -hpux*)
  1235.                 vendor=hp
  1236.                 ;;
  1237.             -mpeix*)
  1238.                 vendor=hp
  1239.                 ;;
  1240.             -hiux*)
  1241.                 vendor=hitachi
  1242.                 ;;
  1243.             -unos*)
  1244.                 vendor=crds
  1245.                 ;;
  1246.             -dgux*)
  1247.                 vendor=dg
  1248.                 ;;
  1249.             -luna*)
  1250.                 vendor=omron
  1251.                 ;;
  1252.             -genix*)
  1253.                 vendor=ns
  1254.                 ;;
  1255.             -mvs*)
  1256.                 vendor=ibm
  1257.                 ;;
  1258.             -ptx*)
  1259.                 vendor=sequent
  1260.                 ;;
  1261.             -vxsim* | -vxworks*)
  1262.                 vendor=wrs
  1263.                 ;;
  1264.             -aux*)
  1265.                 vendor=apple
  1266.                 ;;
  1267.             -hms*)                # EGCS LOCAL
  1268.                 vendor=hitachi
  1269.                 ;;
  1270.             -mpw* | -macos*)        # EGCS LOCAL
  1271.                 vendor=apple
  1272.                 ;;
  1273.         esac
  1274.         basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
  1275.         ;;
  1276. esac
  1277.  
  1278. echo $basic_machine$os
  1279.