home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD2.bin / bbs / gnu / libg++-2.6.2.lha / libg++-2.6.2 / config.sub < prev    next >
Text File  |  1994-12-15  |  21KB  |  1,013 lines

  1. #!/bin/sh
  2. # Configuration validation subroutine script, version 1.1.
  3. #   Copyright (C) 1991, 1992, 1993, 1994 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., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22.  
  23. # Configuration subroutine to validate and canonicalize a configuration type.
  24. # Supply the specified configuration type as an argument.
  25. # If it is invalid, we print an error message on stderr and exit with code 1.
  26. # Otherwise, we print the canonical config type on stdout and succeed.
  27.  
  28. # This file is supposed to be the same for all GNU packages
  29. # and recognize all the CPU types, system types and aliases
  30. # that are meaningful with *any* GNU software.
  31. # Each package is responsible for reporting which valid configurations
  32. # it does not support.  The user should be able to distinguish
  33. # a failure to support a valid configuration from a meaningless
  34. # configuration.
  35.  
  36. # The goal of this file is to map all the various variations of a given
  37. # machine specification into a single specification in the form:
  38. #    CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
  39. # It is wrong to echo any other type of specification.
  40.  
  41. if [ x$1 = x ]                        # CYGNUS LOCAL
  42. then
  43.     echo Configuration name missing. 1>&2
  44.     echo "Usage: $0 CPU-MFR-OPSYS" 1>&2
  45.     echo "or     $0 ALIAS" 1>&2
  46.     echo where ALIAS is a recognized configuration type. 1>&2
  47.     exit 1
  48. fi
  49.  
  50. # First pass through any local machine types.
  51. case $1 in
  52.     *local*)
  53.         echo $1
  54.         exit 0
  55.         ;;
  56.     *)
  57.     ;;
  58. esac
  59.  
  60. # Separate what the user gave into CPU-COMPANY and OS (if any).
  61. basic_machine=`echo $1 | sed 's/-[^-]*$//'`
  62. if [ $basic_machine != $1 ]
  63. then os=`echo $1 | sed 's/.*-/-/'`
  64. else os=; fi
  65.  
  66. ### Let's recognize common machines as not being operating systems so
  67. ### that things like config.sub decstation-3100 work.  We also
  68. ### recognize some manufacturers as not being operating systems, so we
  69. ### can provide default operating systems below.
  70. case $os in
  71.     -sun*os*)
  72.         # Prevent following clause from handling this invalid input.
  73.         ;;
  74.     -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \
  75.     -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \
  76.     -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \
  77.     -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
  78.     -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
  79.     -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
  80.     -sim | -cisco | -oki | -wec | -winbond )    # CYGNUS LOCAL
  81.         os=
  82.         basic_machine=$1
  83.         ;;
  84.     -scout)                        # CYGNUS LOCAL
  85.         ;;
  86.     -wrs)                        # CYGNUS LOCAL
  87.         os=vxworks
  88.         basic_machine=$1
  89.         ;;
  90.     -unixware)                    # CYGNUS LOCAL
  91.         os=-sysv4
  92.         basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
  93.         ;;
  94.     -hiux*)
  95.         os=-hiuxwe2
  96.         ;;
  97.     -sco4)
  98.         os=-sco3.2v4
  99.         basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
  100.         ;;
  101.     -sco3.2.[4-9]*)
  102.         os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
  103.         basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
  104.         ;;
  105.     -sco3.2v[4-9]*)
  106.         # Don't forget version if it is 3.2v4 or newer.
  107.         basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
  108.         ;;
  109.     -sco*)
  110.         os=-sco3.2v2
  111.         basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
  112.         ;;
  113.     -isc)
  114.         os=-isc2.2
  115.         basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
  116.         ;;
  117.     -clix*)
  118.         basic_machine=clipper-intergraph
  119.         ;;
  120.     -isc*)
  121.         basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
  122.         ;;
  123.     -lynx*)            # CYGNUS LOCAL: lynx
  124.         os=-lynxos
  125.         ;;
  126.     -ptx*)
  127.         basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`
  128.         ;;
  129.     -windowsnt*)
  130.         os=`echo $os | sed -e 's/windowsnt/winnt/'`
  131.         ;;
  132. esac
  133.  
  134. # Decode aliases for certain CPU-COMPANY combinations.
  135. case $basic_machine in
  136.     # Recognize the basic CPU types without company name.
  137.     # Some are omitted here because they have special meanings below.
  138.     tahoe | i[345]86 | i860 | m68k | m68000 | m88k | ns32k | arm | pyramid \
  139.         | tron | a29k | 580 | i960 | h8300 | hppa1.0 | hppa1.1 \
  140.         | alpha | we32k | ns16k | clipper | sparclite | i370 | sh \
  141.         | powerpc | sparc64 | 1750a | dsp16xx | mips64 | mipsel \
  142.         | mips64el | mips64orion | mips64orionel \
  143.         | m88110 | sparc | m680[01234]0 | m683?2 | z8k | v70 \
  144.         | h8500) # CYGNUS LOCAL
  145.         basic_machine=$basic_machine-unknown
  146.         ;;
  147.     # Object if more than one company name word.
  148.     *-*-*)
  149.         echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
  150.         exit 1
  151.         ;;
  152.     # Recognize the basic CPU types with company name.
  153.     vax-* | tahoe-* | i[345]86-* | i860-* | m68k-* | m68000-* | m88k-* \
  154.           | sparc-* | ns32k-* | fx80-* | arm-* | c[123]* \
  155.           | mips-* | pyramid-* | tron-* | a29k-* | romp-* | rs6000-* \
  156.           | none-* | 580-* | cray2-* | h8300-* | i960-* | xmp-* | ymp-* \
  157.           | hppa1.0-* | hppa1.1-* | alpha-* | we32k-* | cydra-* | ns16k-* \
  158.           | pn-* | np1-* | xps100-* | clipper-* | orion-* | sparclite-* \
  159.           | sh-* | powerpc-* | sparc64-* | mips64-* | mipsel-* \
  160.           | mips64el-* | mips64orion-* | mips64orionel-* \
  161.           | m88110-* | m680[01234]0-* | m683?2-* | z8k-* \
  162.           | h8500-* ) # CYGNUS LOCAL
  163.         ;;
  164.     # Recognize the various machine names and aliases which stand
  165.     # for a CPU type and a company and sometimes even an OS.
  166.     386bsd)                        # CYGNUS LOCAL
  167.         basic_machine=i386-unknown
  168.         os=-bsd
  169.         ;;
  170.     3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
  171.         basic_machine=m68000-att
  172.         ;;
  173.     3b*)
  174.         basic_machine=we32k-att
  175.         ;;
  176.     a29khif)                    # CYGNUS LOCAL
  177.         basic_machine=a29k-amd
  178.         os=-udi
  179.         ;;
  180.     adobe68k)                    # CYGNUS LOCAL
  181.         basic_machine=m68010-adobe
  182.         os=-scout
  183.         ;;
  184.     alliant | fx80)
  185.         basic_machine=fx80-alliant
  186.         ;;
  187.     altos | altos3068)
  188.         basic_machine=m68k-altos
  189.         ;;
  190.     am29k)
  191.         basic_machine=a29k-none
  192.         os=-bsd
  193.         ;;
  194.     amdahl)
  195.         basic_machine=580-amdahl
  196.         os=-sysv
  197.         ;;
  198.     amiga | amiga-*)
  199.         basic_machine=m68k-cbm
  200.         ;;
  201.     amigados)
  202.         basic_machine=m68k-cbm
  203.         os=-amigados
  204.         ;;
  205.     amigaunix | amix)
  206.         basic_machine=m68k-cbm
  207.         os=-sysv4
  208.         ;;
  209.     apollo68)
  210.         basic_machine=m68k-apollo
  211.         os=-sysv
  212.         ;;
  213.     apollo68bsd)                    # CYGNUS LOCAL
  214.         basic_machine=m68k-apollo
  215.         os=-bsd
  216.         ;;
  217.     balance)
  218.         basic_machine=ns32k-sequent
  219.         os=-dynix
  220.         ;;
  221.     convex-c1)
  222.         basic_machine=c1-convex
  223.         os=-bsd
  224.         ;;
  225.     convex-c2)
  226.         basic_machine=c2-convex
  227.         os=-bsd
  228.         ;;
  229.     convex-c32)
  230.         basic_machine=c32-convex
  231.         os=-bsd
  232.         ;;
  233.     convex-c34)
  234.         basic_machine=c34-convex
  235.         os=-bsd
  236.         ;;
  237.     convex-c38)
  238.         basic_machine=c38-convex
  239.         os=-bsd
  240.         ;;
  241.     cray | ymp)
  242.         basic_machine=ymp-cray
  243.         os=-unicos
  244.         ;;
  245.     cray2)
  246.         basic_machine=cray2-cray
  247.         os=-unicos
  248.         ;;
  249.     crds | unos)
  250.         basic_machine=m68k-crds
  251.         ;;
  252.     da30 | da30-*)
  253.         basic_machine=m68k-da30
  254.         ;;
  255.     decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn)
  256.         basic_machine=mips-dec
  257.         ;;
  258.     delta | 3300 | motorola-3300 | motorola-delta \
  259.           | 3300-motorola | delta-motorola)
  260.         basic_machine=m68k-motorola
  261.         ;;
  262.     delta88)
  263.         basic_machine=m88k-motorola
  264.         os=-sysv3
  265.         ;;
  266.     dpx20 | dpx20-*)
  267.         basic_machine=rs6000-bull
  268.         os=-bosx
  269.         ;;
  270.     dpx2* | dpx2*-bull)
  271.         basic_machine=m68k-bull
  272.         os=-sysv3
  273.         ;;
  274.     ebmon29k)
  275.         basic_machine=a29k-amd
  276.         os=-ebmon
  277.         ;;
  278.     elxsi)
  279.         basic_machine=elxsi-elxsi
  280.         os=-bsd
  281.         ;;
  282.     encore | umax | mmax)
  283.         basic_machine=ns32k-encore
  284.         ;;
  285.     es1800 | OSE68k | ose68k | ose | OSE)        # CYGNUS LOCAL
  286.         basic_machine=m68k-ericsson
  287.         os=-ose
  288.         ;;
  289.     fx2800)
  290.         basic_machine=i860-alliant
  291.         ;;
  292.     genix)
  293.         basic_machine=ns32k-ns
  294.         ;;
  295.     gmicro)
  296.         basic_machine=tron-gmicro
  297.         os=-sysv
  298.         ;;
  299.     h3050r* | hiux*)
  300.         basic_machine=hppa1.1-hitachi
  301.         os=-hiuxwe2
  302.         ;;
  303.     h8300hms)
  304.         basic_machine=h8300-hitachi
  305.         os=-hms
  306.