home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 mARCH / PCWK3A99.iso / Linux / DDD331 / DDD-3_1_.000 / DDD-3_1_ / ddd-3.1.1 / config.sub < prev    next >
Text File  |  1998-04-30  |  26KB  |  1,227 lines

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