Mercurial > emacs
annotate config.sub @ 14659:7669c19beda8
Comment change.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Sat, 24 Feb 1996 04:43:05 +0000 |
| parents | 6d6fd8e250ed |
| children | ebfb964ca323 |
| rev | line source |
|---|---|
|
10704
0b7596c02db4
Add a blank in the #! line for 4.2BSD Dynix etc.
David J. MacKenzie <djm@gnu.org>
parents:
10625
diff
changeset
|
1 #! /bin/sh |
|
653
f3531d3d57c9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
652
diff
changeset
|
2 # Configuration validation subroutine script, version 1.1. |
| 14191 | 3 # Copyright (C) 1991, 92, 93, 94, 95, 1996 Free Software Foundation, Inc. |
|
645
57295fc40ac3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
631
diff
changeset
|
4 # This file is (in principle) common to ALL GNU software. |
|
57295fc40ac3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
631
diff
changeset
|
5 # The presence of a machine in this file suggests that SOME GNU software |
|
57295fc40ac3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
631
diff
changeset
|
6 # can handle that machine. It does not imply ALL GNU software can. |
|
9610
6c39fe6d9581
Add licensing exception for Autoconf.
David J. MacKenzie <djm@gnu.org>
parents:
9255
diff
changeset
|
7 # |
|
6c39fe6d9581
Add licensing exception for Autoconf.
David J. MacKenzie <djm@gnu.org>
parents:
9255
diff
changeset
|
8 # This file is free software; you can redistribute it and/or modify |
|
6c39fe6d9581
Add licensing exception for Autoconf.
David J. MacKenzie <djm@gnu.org>
parents:
9255
diff
changeset
|
9 # it under the terms of the GNU General Public License as published by |
|
6c39fe6d9581
Add licensing exception for Autoconf.
David J. MacKenzie <djm@gnu.org>
parents:
9255
diff
changeset
|
10 # the Free Software Foundation; either version 2 of the License, or |
|
6c39fe6d9581
Add licensing exception for Autoconf.
David J. MacKenzie <djm@gnu.org>
parents:
9255
diff
changeset
|
11 # (at your option) any later version. |
|
6c39fe6d9581
Add licensing exception for Autoconf.
David J. MacKenzie <djm@gnu.org>
parents:
9255
diff
changeset
|
12 # |
|
6c39fe6d9581
Add licensing exception for Autoconf.
David J. MacKenzie <djm@gnu.org>
parents:
9255
diff
changeset
|
13 # This program is distributed in the hope that it will be useful, |
|
6c39fe6d9581
Add licensing exception for Autoconf.
David J. MacKenzie <djm@gnu.org>
parents:
9255
diff
changeset
|
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
6c39fe6d9581
Add licensing exception for Autoconf.
David J. MacKenzie <djm@gnu.org>
parents:
9255
diff
changeset
|
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
6c39fe6d9581
Add licensing exception for Autoconf.
David J. MacKenzie <djm@gnu.org>
parents:
9255
diff
changeset
|
16 # GNU General Public License for more details. |
|
6c39fe6d9581
Add licensing exception for Autoconf.
David J. MacKenzie <djm@gnu.org>
parents:
9255
diff
changeset
|
17 # |
|
6c39fe6d9581
Add licensing exception for Autoconf.
David J. MacKenzie <djm@gnu.org>
parents:
9255
diff
changeset
|
18 # You should have received a copy of the GNU General Public License |
|
6c39fe6d9581
Add licensing exception for Autoconf.
David J. MacKenzie <djm@gnu.org>
parents:
9255
diff
changeset
|
19 # along with this program; if not, write to the Free Software |
| 12247 | 20 # Foundation, Inc., 59 Temple Place - Suite 330, |
| 21 # Boston, MA 02111-1307, USA. | |
| 576 | 22 |
|
9610
6c39fe6d9581
Add licensing exception for Autoconf.
David J. MacKenzie <djm@gnu.org>
parents:
9255
diff
changeset
|
23 # As a special exception to the GNU General Public License, if you |
|
6c39fe6d9581
Add licensing exception for Autoconf.
David J. MacKenzie <djm@gnu.org>
parents:
9255
diff
changeset
|
24 # distribute this file as part of a program that contains a |
|
6c39fe6d9581
Add licensing exception for Autoconf.
David J. MacKenzie <djm@gnu.org>
parents:
9255
diff
changeset
|
25 # configuration script generated by Autoconf, you may include it under |
|
6c39fe6d9581
Add licensing exception for Autoconf.
David J. MacKenzie <djm@gnu.org>
parents:
9255
diff
changeset
|
26 # the same distribution terms that you use for the rest of that program. |
| 576 | 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 | |
|
1631
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
44 # It is wrong to echo any other type of specification. |
| 576 | 45 |
| 9997 | 46 if [ x$1 = x ] |
| 47 then | |
| 48 echo Configuration name missing. 1>&2 | |
| 49 echo "Usage: $0 CPU-MFR-OPSYS" 1>&2 | |
| 50 echo "or $0 ALIAS" 1>&2 | |
| 51 echo where ALIAS is a recognized configuration type. 1>&2 | |
| 52 exit 1 | |
| 53 fi | |
| 54 | |
| 576 | 55 # First pass through any local machine types. |
| 56 case $1 in | |
| 57 *local*) | |
| 58 echo $1 | |
| 59 exit 0 | |
| 60 ;; | |
| 61 *) | |
| 62 ;; | |
| 63 esac | |
| 64 | |
| 65 # Separate what the user gave into CPU-COMPANY and OS (if any). | |
| 66 basic_machine=`echo $1 | sed 's/-[^-]*$//'` | |
| 67 if [ $basic_machine != $1 ] | |
| 68 then os=`echo $1 | sed 's/.*-/-/'` | |
| 69 else os=; fi | |
| 70 | |
|
1631
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
71 ### Let's recognize common machines as not being operating systems so |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
72 ### that things like config.sub decstation-3100 work. We also |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
73 ### recognize some manufacturers as not being operating systems, so we |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
74 ### can provide default operating systems below. |
| 576 | 75 case $os in |
|
1961
eeb000068cc8
Error if company name is more than one word.
Richard M. Stallman <rms@gnu.org>
parents:
1852
diff
changeset
|
76 -sun*os*) |
|
eeb000068cc8
Error if company name is more than one word.
Richard M. Stallman <rms@gnu.org>
parents:
1852
diff
changeset
|
77 # Prevent following clause from handling this invalid input. |
|
eeb000068cc8
Error if company name is more than one word.
Richard M. Stallman <rms@gnu.org>
parents:
1852
diff
changeset
|
78 ;; |
| 576 | 79 -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ |
| 80 -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ | |
|
8716
4d399ce17485
* config.sub: Cleanup NeXT support to emit nextstep*.
Per Bothner <bothner@cygnus.com>
parents:
8620
diff
changeset
|
81 -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ |
|
4902
a8a03a975fe8
Re-add hitachi to list of companies not to treat as OS names.
Richard M. Stallman <rms@gnu.org>
parents:
4901
diff
changeset
|
82 -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ |
| 576 | 83 -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ |
|
1631
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
84 -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp ) |
| 576 | 85 os= |
| 86 basic_machine=$1 | |
| 87 ;; | |
| 4901 | 88 -hiux*) |
| 5576 | 89 os=-hiuxwe2 |
| 4901 | 90 ;; |
| 14191 | 91 -sco5) |
| 92 os=sco3.2v5 | |
| 93 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'` | |
| 94 ;; | |
|
3904
6c98b9e2a213
Canonicalize -sco4 and -sco3.2.4 to -sco3.2v4.
Richard M. Stallman <rms@gnu.org>
parents:
3896
diff
changeset
|
95 -sco4) |
|
6c98b9e2a213
Canonicalize -sco4 and -sco3.2.4 to -sco3.2v4.
Richard M. Stallman <rms@gnu.org>
parents:
3896
diff
changeset
|
96 os=-sco3.2v4 |
|
6c98b9e2a213
Canonicalize -sco4 and -sco3.2.4 to -sco3.2v4.
Richard M. Stallman <rms@gnu.org>
parents:
3896
diff
changeset
|
97 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'` |
|
6c98b9e2a213
Canonicalize -sco4 and -sco3.2.4 to -sco3.2v4.
Richard M. Stallman <rms@gnu.org>
parents:
3896
diff
changeset
|
98 ;; |
|
6c98b9e2a213
Canonicalize -sco4 and -sco3.2.4 to -sco3.2v4.
Richard M. Stallman <rms@gnu.org>
parents:
3896
diff
changeset
|
99 -sco3.2.[4-9]*) |
|
6c98b9e2a213
Canonicalize -sco4 and -sco3.2.4 to -sco3.2v4.
Richard M. Stallman <rms@gnu.org>
parents:
3896
diff
changeset
|
100 os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` |
|
6c98b9e2a213
Canonicalize -sco4 and -sco3.2.4 to -sco3.2v4.
Richard M. Stallman <rms@gnu.org>
parents:
3896
diff
changeset
|
101 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'` |
|
6c98b9e2a213
Canonicalize -sco4 and -sco3.2.4 to -sco3.2v4.
Richard M. Stallman <rms@gnu.org>
parents:
3896
diff
changeset
|
102 ;; |
|
1545
9ff238dd8a35
Don't discard SCO version number if it's 3.2v4.
Richard M. Stallman <rms@gnu.org>
parents:
1415
diff
changeset
|
103 -sco3.2v[4-9]*) |
|
9ff238dd8a35
Don't discard SCO version number if it's 3.2v4.
Richard M. Stallman <rms@gnu.org>
parents:
1415
diff
changeset
|
104 # Don't forget version if it is 3.2v4 or newer. |
|
1735
5032e4faca19
($os alternatives for sco and isc): Preserve the specified os version if any.
Richard M. Stallman <rms@gnu.org>
parents:
1732
diff
changeset
|
105 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'` |
|
1545
9ff238dd8a35
Don't discard SCO version number if it's 3.2v4.
Richard M. Stallman <rms@gnu.org>
parents:
1415
diff
changeset
|
106 ;; |
| 576 | 107 -sco*) |
|
646
e283d4164aca
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
645
diff
changeset
|
108 os=-sco3.2v2 |
|
1735
5032e4faca19
($os alternatives for sco and isc): Preserve the specified os version if any.
Richard M. Stallman <rms@gnu.org>
parents:
1732
diff
changeset
|
109 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'` |
| 576 | 110 ;; |
|
1631
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
111 -isc) |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
112 os=-isc2.2 |
|
1735
5032e4faca19
($os alternatives for sco and isc): Preserve the specified os version if any.
Richard M. Stallman <rms@gnu.org>
parents:
1732
diff
changeset
|
113 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'` |
|
1631
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
114 ;; |
|
2344
d21c82eba8ab
Default to clipper-intergraph if system is clix.
Richard M. Stallman <rms@gnu.org>
parents:
2204
diff
changeset
|
115 -clix*) |
|
d21c82eba8ab
Default to clipper-intergraph if system is clix.
Richard M. Stallman <rms@gnu.org>
parents:
2204
diff
changeset
|
116 basic_machine=clipper-intergraph |
|
d21c82eba8ab
Default to clipper-intergraph if system is clix.
Richard M. Stallman <rms@gnu.org>
parents:
2204
diff
changeset
|
117 ;; |
| 576 | 118 -isc*) |
|
1735
5032e4faca19
($os alternatives for sco and isc): Preserve the specified os version if any.
Richard M. Stallman <rms@gnu.org>
parents:
1732
diff
changeset
|
119 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'` |
| 576 | 120 ;; |
| 10781 | 121 -lynx*) |
| 4204 | 122 os=-lynxos |
| 123 ;; | |
|
8722
5c5f80be532f
(ptx): New OS; use for Sequent.
Richard Kenner <kenner@gnu.org>
parents:
8720
diff
changeset
|
124 -ptx*) |
|
5c5f80be532f
(ptx): New OS; use for Sequent.
Richard Kenner <kenner@gnu.org>
parents:
8720
diff
changeset
|
125 basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` |
|
5c5f80be532f
(ptx): New OS; use for Sequent.
Richard Kenner <kenner@gnu.org>
parents:
8720
diff
changeset
|
126 ;; |
|
9198
af7bd3312376
(windowsnt): Alias for winnt.
Richard Kenner <kenner@gnu.org>
parents:
9189
diff
changeset
|
127 -windowsnt*) |
|
af7bd3312376
(windowsnt): Alias for winnt.
Richard Kenner <kenner@gnu.org>
parents:
9189
diff
changeset
|
128 os=`echo $os | sed -e 's/windowsnt/winnt/'` |
|
af7bd3312376
(windowsnt): Alias for winnt.
Richard Kenner <kenner@gnu.org>
parents:
9189
diff
changeset
|
129 ;; |
| 14539 | 130 -psos*) |
| 131 os=-psos | |
| 132 ;; | |
| 576 | 133 esac |
| 134 | |
| 135 # Decode aliases for certain CPU-COMPANY combinations. | |
| 136 case $basic_machine in | |
| 4829 | 137 # Recognize the basic CPU types without company name. |
| 576 | 138 # Some are omitted here because they have special meanings below. |
|
13736
4e7c5362c9bd
(i*86*) Change [345] to [3456]
Stan Cox <scox@redhat.com>
parents:
13729
diff
changeset
|
139 tahoe | i[3456]86 | i860 | m68k | m68000 | m88k | ns32k | arm \ |
|
11812
0ef485e86493
Add configuration for semi-hosted ARM.
Erich Stefan Boleyn <erich@uruk.org>
parents:
11802
diff
changeset
|
140 | arme[lb] | pyramid \ |
| 993 | 141 | tron | a29k | 580 | i960 | h8300 | hppa1.0 | hppa1.1 \ |
| 14561 | 142 | alpha | we32k | ns16k | clipper | i370 | sh \ |
| 143 | powerpc | powerpcle | 1750a | dsp16xx | mips64 | mipsel \ | |
| 9997 | 144 | pdp11 | mips64el | mips64orion | mips64orionel \ |
| 14561 | 145 | sparc | sparclet | sparclite | sparc64) |
| 576 | 146 basic_machine=$basic_machine-unknown |
| 147 ;; | |
|
1961
eeb000068cc8
Error if company name is more than one word.
Richard M. Stallman <rms@gnu.org>
parents:
1852
diff
changeset
|
148 # Object if more than one company name word. |
|
eeb000068cc8
Error if company name is more than one word.
Richard M. Stallman <rms@gnu.org>
parents:
1852
diff
changeset
|
149 *-*-*) |
|
eeb000068cc8
Error if company name is more than one word.
Richard M. Stallman <rms@gnu.org>
parents:
1852
diff
changeset
|
150 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 |
|
eeb000068cc8
Error if company name is more than one word.
Richard M. Stallman <rms@gnu.org>
parents:
1852
diff
changeset
|
151 exit 1 |
|
eeb000068cc8
Error if company name is more than one word.
Richard M. Stallman <rms@gnu.org>
parents:
1852
diff
changeset
|
152 ;; |
| 4829 | 153 # Recognize the basic CPU types with company name. |
|
13736
4e7c5362c9bd
(i*86*) Change [345] to [3456]
Stan Cox <scox@redhat.com>
parents:
13729
diff
changeset
|
154 vax-* | tahoe-* | i[3456]86-* | i860-* | m68k-* | m68000-* | m88k-* \ |
| 576 | 155 | sparc-* | ns32k-* | fx80-* | arm-* | c[123]* \ |
|
11786
999e039b498b
Add powerpc little endian support; Add powerpc variants; Add pentium variants
Michael Meissner <gnu@the-meissners.org>
parents:
11254
diff
changeset
|
156 | mips-* | pyramid-* | tron-* | a29k-* | romp-* | rs6000-* | power-* \ |
| 576 | 157 | none-* | 580-* | cray2-* | h8300-* | i960-* | xmp-* | ymp-* \ |
|
1631
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
158 | hppa1.0-* | hppa1.1-* | alpha-* | we32k-* | cydra-* | ns16k-* \ |
| 2614 | 159 | pn-* | np1-* | xps100-* | clipper-* | orion-* | sparclite-* \ |
|
11786
999e039b498b
Add powerpc little endian support; Add powerpc variants; Add pentium variants
Michael Meissner <gnu@the-meissners.org>
parents:
11254
diff
changeset
|
160 | pdp11-* | sh-* | powerpc-* | powerpcle-* | sparc64-* | mips64-* | mipsel-* \ |
| 10033 | 161 | mips64el-* | mips64orion-* | mips64orionel-*) |
| 576 | 162 ;; |
| 6122 | 163 # Recognize the various machine names and aliases which stand |
| 164 # for a CPU type and a company and sometimes even an OS. | |
|
5609
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
165 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
166 basic_machine=m68000-att |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
167 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
168 3b*) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
169 basic_machine=we32k-att |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
170 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
171 alliant | fx80) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
172 basic_machine=fx80-alliant |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
173 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
174 altos | altos3068) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
175 basic_machine=m68k-altos |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
176 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
177 am29k) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
178 basic_machine=a29k-none |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
179 os=-bsd |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
180 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
181 amdahl) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
182 basic_machine=580-amdahl |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
183 os=-sysv |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
184 ;; |
|
8619
a131e8501151
Rearrange handling of NetBSD ports.
Charles Hannum <mycroft@gnu.org>
parents:
8615
diff
changeset
|
185 amiga | amiga-*) |
|
5609
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
186 basic_machine=m68k-cbm |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
187 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
188 amigados) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
189 basic_machine=m68k-cbm |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
190 os=-amigados |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
191 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
192 amigaunix | amix) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
193 basic_machine=m68k-cbm |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
194 os=-sysv4 |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
195 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
196 apollo68) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
197 basic_machine=m68k-apollo |
| 576 | 198 os=-sysv |
| 199 ;; | |
| 14448 | 200 aux) |
| 201 basic_machine=m68k-apple | |
| 202 os=-aux | |
| 203 ;; | |
|
5609
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
204 balance) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
205 basic_machine=ns32k-sequent |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
206 os=-dynix |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
207 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
208 convex-c1) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
209 basic_machine=c1-convex |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
210 os=-bsd |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
211 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
212 convex-c2) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
213 basic_machine=c2-convex |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
214 os=-bsd |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
215 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
216 convex-c32) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
217 basic_machine=c32-convex |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
218 os=-bsd |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
219 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
220 convex-c34) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
221 basic_machine=c34-convex |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
222 os=-bsd |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
223 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
224 convex-c38) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
225 basic_machine=c38-convex |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
226 os=-bsd |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
227 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
228 cray | ymp) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
229 basic_machine=ymp-cray |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
230 os=-unicos |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
231 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
232 cray2) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
233 basic_machine=cray2-cray |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
234 os=-unicos |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
235 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
236 crds | unos) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
237 basic_machine=m68k-crds |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
238 ;; |
|
8619
a131e8501151
Rearrange handling of NetBSD ports.
Charles Hannum <mycroft@gnu.org>
parents:
8615
diff
changeset
|
239 da30 | da30-*) |
|
a131e8501151
Rearrange handling of NetBSD ports.
Charles Hannum <mycroft@gnu.org>
parents:
8615
diff
changeset
|
240 basic_machine=m68k-da30 |
|
a131e8501151
Rearrange handling of NetBSD ports.
Charles Hannum <mycroft@gnu.org>
parents:
8615
diff
changeset
|
241 ;; |
|
a131e8501151
Rearrange handling of NetBSD ports.
Charles Hannum <mycroft@gnu.org>
parents:
8615
diff
changeset
|
242 decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) |
|
5609
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
243 basic_machine=mips-dec |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
244 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
245 delta | 3300 | motorola-3300 | motorola-delta \ |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
246 | 3300-motorola | delta-motorola) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
247 basic_machine=m68k-motorola |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
248 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
249 delta88) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
250 basic_machine=m88k-motorola |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
251 os=-sysv3 |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
252 ;; |
| 6509 | 253 dpx20 | dpx20-*) |
| 254 basic_machine=rs6000-bull | |
| 255 os=-bosx | |
| 256 ;; | |
|
5609
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
257 dpx2* | dpx2*-bull) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
258 basic_machine=m68k-bull |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
259 os=-sysv3 |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
260 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
261 ebmon29k) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
262 basic_machine=a29k-amd |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
263 os=-ebmon |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
264 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
265 elxsi) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
266 basic_machine=elxsi-elxsi |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
267 os=-bsd |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
268 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
269 encore | umax | mmax) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
270 basic_machine=ns32k-encore |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
271 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
272 fx2800) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
273 basic_machine=i860-alliant |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
274 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
275 genix) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
276 basic_machine=ns32k-ns |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
277 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
278 gmicro) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
279 basic_machine=tron-gmicro |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
280 os=-sysv |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
281 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
282 h3050r* | hiux*) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
283 basic_machine=hppa1.1-hitachi |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
284 os=-hiuxwe2 |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
285 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
286 h8300hms) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
287 basic_machine=h8300-hitachi |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
288 os=-hms |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
289 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
290 harris) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
291 basic_machine=m88k-harris |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
292 os=-sysv3 |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
293 ;; |
|
8619
a131e8501151
Rearrange handling of NetBSD ports.
Charles Hannum <mycroft@gnu.org>
parents:
8615
diff
changeset
|
294 hp300-*) |
|
a131e8501151
Rearrange handling of NetBSD ports.
Charles Hannum <mycroft@gnu.org>
parents:
8615
diff
changeset
|
295 basic_machine=m68k-hp |
|
a131e8501151
Rearrange handling of NetBSD ports.
Charles Hannum <mycroft@gnu.org>
parents:
8615
diff
changeset
|
296 ;; |
|
5609
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
297 hp300bsd) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
298 basic_machine=m68k-hp |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
299 os=-bsd |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
300 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
301 hp300hpux) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
302 basic_machine=m68k-hp |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
303 os=-hpux |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
304 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
305 hp9k2[0-9][0-9] | hp9k31[0-9]) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
306 basic_machine=m68000-hp |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
307 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
308 hp9k3[2-9][0-9]) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
309 basic_machine=m68k-hp |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
310 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
311 hp9k7[0-9][0-9] | hp7[0-9][0-9] | hp9k8[0-9]7 | hp8[0-9]7) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
312 basic_machine=hppa1.1-hp |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
313 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
314 hp9k8[0-9][0-9] | hp8[0-9][0-9]) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
315 basic_machine=hppa1.0-hp |
| 576 | 316 ;; |
| 2495 | 317 i370-ibm* | ibm*) |
| 318 basic_machine=i370-ibm | |
| 319 os=-mvs | |
| 320 ;; | |
|
1735
5032e4faca19
($os alternatives for sco and isc): Preserve the specified os version if any.
Richard M. Stallman <rms@gnu.org>
parents:
1732
diff
changeset
|
321 # I'm not sure what "Sysv32" means. Should this be sysv3.2? |
|
13736
4e7c5362c9bd
(i*86*) Change [345] to [3456]
Stan Cox <scox@redhat.com>
parents:
13729
diff
changeset
|
322 i[3456]86v32) |
|
1735
5032e4faca19
($os alternatives for sco and isc): Preserve the specified os version if any.
Richard M. Stallman <rms@gnu.org>
parents:
1732
diff
changeset
|
323 basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'` |
|
738
81cd2a003397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
674
diff
changeset
|
324 os=-sysv32 |
|
81cd2a003397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
674
diff
changeset
|
325 ;; |
|
13736
4e7c5362c9bd
(i*86*) Change [345] to [3456]
Stan Cox <scox@redhat.com>
parents:
13729
diff
changeset
|
326 i[3456]86v4*) |
|
1735
5032e4faca19
($os alternatives for sco and isc): Preserve the specified os version if any.
Richard M. Stallman <rms@gnu.org>
parents:
1732
diff
changeset
|
327 basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'` |
| 576 | 328 os=-sysv4 |
| 329 ;; | |
|
13736
4e7c5362c9bd
(i*86*) Change [345] to [3456]
Stan Cox <scox@redhat.com>
parents:
13729
diff
changeset
|
330 i[3456]86v) |
|
1735
5032e4faca19
($os alternatives for sco and isc): Preserve the specified os version if any.
Richard M. Stallman <rms@gnu.org>
parents:
1732
diff
changeset
|
331 basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'` |
|
738
81cd2a003397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
674
diff
changeset
|
332 os=-sysv |
|
81cd2a003397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
674
diff
changeset
|
333 ;; |
|
13736
4e7c5362c9bd
(i*86*) Change [345] to [3456]
Stan Cox <scox@redhat.com>
parents:
13729
diff
changeset
|
334 i[3456]86sol2) |
|
1840
b00ada422354
(i[34]86sol2): New abbrev for i[34]86-unknown-solaris2.
Jim Wilson <wilson@gnu.org>
parents:
1735
diff
changeset
|
335 basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'` |
|
b00ada422354
(i[34]86sol2): New abbrev for i[34]86-unknown-solaris2.
Jim Wilson <wilson@gnu.org>
parents:
1735
diff
changeset
|
336 os=-solaris2 |
|
b00ada422354
(i[34]86sol2): New abbrev for i[34]86-unknown-solaris2.
Jim Wilson <wilson@gnu.org>
parents:
1735
diff
changeset
|
337 ;; |
| 576 | 338 iris | iris4d) |
| 339 basic_machine=mips-sgi | |
|
651
144027c7abb2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
646
diff
changeset
|
340 case $os in |
|
144027c7abb2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
646
diff
changeset
|
341 -irix*) |
|
144027c7abb2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
646
diff
changeset
|
342 ;; |
|
144027c7abb2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
646
diff
changeset
|
343 *) |
|
144027c7abb2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
646
diff
changeset
|
344 os=-irix4 |
|
144027c7abb2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
646
diff
changeset
|
345 ;; |
|
144027c7abb2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
646
diff
changeset
|
346 esac |
| 576 | 347 ;; |
|
5609
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
348 isi68 | isi) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
349 basic_machine=m68k-isi |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
350 os=-sysv |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
351 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
352 m88k-omron*) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
353 basic_machine=m88k-omron |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
354 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
355 magnum | m3230) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
356 basic_machine=mips-mips |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
357 os=-sysv |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
358 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
359 merlin) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
360 basic_machine=ns32k-utek |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
361 os=-sysv |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
362 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
363 miniframe) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
364 basic_machine=m68000-convergent |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
365 ;; |
|
9247
729da1317557
Add support for MIPS variants
Ian Lance Taylor <ian@cygnus.com>
parents:
9198
diff
changeset
|
366 mips3*-*) |
|
729da1317557
Add support for MIPS variants
Ian Lance Taylor <ian@cygnus.com>
parents:
9198
diff
changeset
|
367 basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` |
|
729da1317557
Add support for MIPS variants
Ian Lance Taylor <ian@cygnus.com>
parents:
9198
diff
changeset
|
368 ;; |
|
729da1317557
Add support for MIPS variants
Ian Lance Taylor <ian@cygnus.com>
parents:
9198
diff
changeset
|
369 mips3*) |
|
729da1317557
Add support for MIPS variants
Ian Lance Taylor <ian@cygnus.com>
parents:
9198
diff
changeset
|
370 basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown |
|
729da1317557
Add support for MIPS variants
Ian Lance Taylor <ian@cygnus.com>
parents:
9198
diff
changeset
|
371 ;; |
|
5609
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
372 ncr3000) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
373 basic_machine=i486-ncr |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
374 os=-sysv4 |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
375 ;; |
| 576 | 376 news | news700 | news800 | news900) |
| 377 basic_machine=m68k-sony | |
| 378 os=-newsos | |
| 379 ;; | |
|
5609
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
380 news1000) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
381 basic_machine=m68030-sony |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
382 os=-newsos |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
383 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
384 news-3600 | risc-news) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
385 basic_machine=mips-sony |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
386 os=-newsos |
| 576 | 387 ;; |
|
8716
4d399ce17485
* config.sub: Cleanup NeXT support to emit nextstep*.
Per Bothner <bothner@cygnus.com>
parents:
8620
diff
changeset
|
388 next | m*-next ) |
|
5609
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
389 basic_machine=m68k-next |
|
6771
0cedd76336a0
Add ns* as operating systems; default to ns2 for NeXT.
Richard Kenner <kenner@gnu.org>
parents:
6509
diff
changeset
|
390 case $os in |
|
8716
4d399ce17485
* config.sub: Cleanup NeXT support to emit nextstep*.
Per Bothner <bothner@cygnus.com>
parents:
8620
diff
changeset
|
391 -nextstep* ) |
|
4d399ce17485
* config.sub: Cleanup NeXT support to emit nextstep*.
Per Bothner <bothner@cygnus.com>
parents:
8620
diff
changeset
|
392 ;; |
|
6771
0cedd76336a0
Add ns* as operating systems; default to ns2 for NeXT.
Richard Kenner <kenner@gnu.org>
parents:
6509
diff
changeset
|
393 -ns2*) |
|
8716
4d399ce17485
* config.sub: Cleanup NeXT support to emit nextstep*.
Per Bothner <bothner@cygnus.com>
parents:
8620
diff
changeset
|
394 os=-nextstep2 |
|
6771
0cedd76336a0
Add ns* as operating systems; default to ns2 for NeXT.
Richard Kenner <kenner@gnu.org>
parents:
6509
diff
changeset
|
395 ;; |
|
0cedd76336a0
Add ns* as operating systems; default to ns2 for NeXT.
Richard Kenner <kenner@gnu.org>
parents:
6509
diff
changeset
|
396 *) |
|
8716
4d399ce17485
* config.sub: Cleanup NeXT support to emit nextstep*.
Per Bothner <bothner@cygnus.com>
parents:
8620
diff
changeset
|
397 os=-nextstep3 |
|
6771
0cedd76336a0
Add ns* as operating systems; default to ns2 for NeXT.
Richard Kenner <kenner@gnu.org>
parents:
6509
diff
changeset
|
398 ;; |
|
0cedd76336a0
Add ns* as operating systems; default to ns2 for NeXT.
Richard Kenner <kenner@gnu.org>
parents:
6509
diff
changeset
|
399 esac |
|
5609
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
400 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
401 nh3000) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
402 basic_machine=m68k-harris |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
403 os=-cxux |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
404 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
405 nh[45]000) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
406 basic_machine=m88k-harris |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
407 os=-cxux |
|
629
e47f9ff356ea
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
613
diff
changeset
|
408 ;; |
|
5609
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
409 nindy960) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
410 basic_machine=i960-intel |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
411 os=-nindy |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
412 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
413 np1) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
414 basic_machine=np1-gould |
| 576 | 415 ;; |
|
5609
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
416 pa-hitachi) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
417 basic_machine=hppa1.1-hitachi |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
418 os=-hiuxwe2 |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
419 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
420 paragon) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
421 basic_machine=i860-intel |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
422 os=-osf |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
423 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
424 pbd) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
425 basic_machine=sparc-tti |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
426 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
427 pbb) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
428 basic_machine=m68k-tti |
| 576 | 429 ;; |
| 8620 | 430 pc532 | pc532-*) |
| 431 basic_machine=ns32k-pc532 | |
| 576 | 432 ;; |
|
13736
4e7c5362c9bd
(i*86*) Change [345] to [3456]
Stan Cox <scox@redhat.com>
parents:
13729
diff
changeset
|
433 pentium | p5) |
|
11786
999e039b498b
Add powerpc little endian support; Add powerpc variants; Add pentium variants
Michael Meissner <gnu@the-meissners.org>
parents:
11254
diff
changeset
|
434 basic_machine=i586-intel |
|
999e039b498b
Add powerpc little endian support; Add powerpc variants; Add pentium variants
Michael Meissner <gnu@the-meissners.org>
parents:
11254
diff
changeset
|
435 ;; |
|
13736
4e7c5362c9bd
(i*86*) Change [345] to [3456]
Stan Cox <scox@redhat.com>
parents:
13729
diff
changeset
|
436 pentiumpro | p6) |
|
4e7c5362c9bd
(i*86*) Change [345] to [3456]
Stan Cox <scox@redhat.com>
parents:
13729
diff
changeset
|
437 basic_machine=i686-intel |
|
4e7c5362c9bd
(i*86*) Change [345] to [3456]
Stan Cox <scox@redhat.com>
parents:
13729
diff
changeset
|
438 ;; |
|
4e7c5362c9bd
(i*86*) Change [345] to [3456]
Stan Cox <scox@redhat.com>
parents:
13729
diff
changeset
|
439 pentium-* | p5-*) |
|
11786
999e039b498b
Add powerpc little endian support; Add powerpc variants; Add pentium variants
Michael Meissner <gnu@the-meissners.org>
parents:
11254
diff
changeset
|
440 basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` |
|
999e039b498b
Add powerpc little endian support; Add powerpc variants; Add pentium variants
Michael Meissner <gnu@the-meissners.org>
parents:
11254
diff
changeset
|
441 ;; |
|
13736
4e7c5362c9bd
(i*86*) Change [345] to [3456]
Stan Cox <scox@redhat.com>
parents:
13729
diff
changeset
|
442 pentiumpro-* | p6-*) |
|
4e7c5362c9bd
(i*86*) Change [345] to [3456]
Stan Cox <scox@redhat.com>
parents:
13729
diff
changeset
|
443 basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` |
|
4e7c5362c9bd
(i*86*) Change [345] to [3456]
Stan Cox <scox@redhat.com>
parents:
13729
diff
changeset
|
444 ;; |
|
11786
999e039b498b
Add powerpc little endian support; Add powerpc variants; Add pentium variants
Michael Meissner <gnu@the-meissners.org>
parents:
11254
diff
changeset
|
445 k5) |
|
999e039b498b
Add powerpc little endian support; Add powerpc variants; Add pentium variants
Michael Meissner <gnu@the-meissners.org>
parents:
11254
diff
changeset
|
446 # We don't have specific support for AMD's K5 yet, so just call it a Pentium |
|
999e039b498b
Add powerpc little endian support; Add powerpc variants; Add pentium variants
Michael Meissner <gnu@the-meissners.org>
parents:
11254
diff
changeset
|
447 basic_machine=i586-amd |
|
999e039b498b
Add powerpc little endian support; Add powerpc variants; Add pentium variants
Michael Meissner <gnu@the-meissners.org>
parents:
11254
diff
changeset
|
448 ;; |
|
999e039b498b
Add powerpc little endian support; Add powerpc variants; Add pentium variants
Michael Meissner <gnu@the-meissners.org>
parents:
11254
diff
changeset
|
449 nexen) |
|
999e039b498b
Add powerpc little endian support; Add powerpc variants; Add pentium variants
Michael Meissner <gnu@the-meissners.org>
parents:
11254
diff
changeset
|
450 # We don't have specific support for Nexgen yet, so just call it a Pentium |
|
999e039b498b
Add powerpc little endian support; Add powerpc variants; Add pentium variants
Michael Meissner <gnu@the-meissners.org>
parents:
11254
diff
changeset
|
451 basic_machine=i586-nexgen |
|
8585
f9d1fe1ed6ec
Move m68k-ccur handling to proper part of file.
Richard M. Stallman <rms@gnu.org>
parents:
8206
diff
changeset
|
452 ;; |
|
5609
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
453 pn) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
454 basic_machine=pn-gould |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
455 ;; |
|
11786
999e039b498b
Add powerpc little endian support; Add powerpc variants; Add pentium variants
Michael Meissner <gnu@the-meissners.org>
parents:
11254
diff
changeset
|
456 power) basic_machine=rs6000-ibm |
|
999e039b498b
Add powerpc little endian support; Add powerpc variants; Add pentium variants
Michael Meissner <gnu@the-meissners.org>
parents:
11254
diff
changeset
|
457 ;; |
|
999e039b498b
Add powerpc little endian support; Add powerpc variants; Add pentium variants
Michael Meissner <gnu@the-meissners.org>
parents:
11254
diff
changeset
|
458 ppc) basic_machine=powerpc-unknown |
|
999e039b498b
Add powerpc little endian support; Add powerpc variants; Add pentium variants
Michael Meissner <gnu@the-meissners.org>
parents:
11254
diff
changeset
|
459 ;; |
|
999e039b498b
Add powerpc little endian support; Add powerpc variants; Add pentium variants
Michael Meissner <gnu@the-meissners.org>
parents:
11254
diff
changeset
|
460 ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` |
|
999e039b498b
Add powerpc little endian support; Add powerpc variants; Add pentium variants
Michael Meissner <gnu@the-meissners.org>
parents:
11254
diff
changeset
|
461 ;; |
|
999e039b498b
Add powerpc little endian support; Add powerpc variants; Add pentium variants
Michael Meissner <gnu@the-meissners.org>
parents:
11254
diff
changeset
|
462 ppcle | powerpclittle | ppc-le | powerpc-little) |
|
999e039b498b
Add powerpc little endian support; Add powerpc variants; Add pentium variants
Michael Meissner <gnu@the-meissners.org>
parents:
11254
diff
changeset
|
463 basic_machine=powerpcle-unknown |
|
999e039b498b
Add powerpc little endian support; Add powerpc variants; Add pentium variants
Michael Meissner <gnu@the-meissners.org>
parents:
11254
diff
changeset
|
464 ;; |
|
999e039b498b
Add powerpc little endian support; Add powerpc variants; Add pentium variants
Michael Meissner <gnu@the-meissners.org>
parents:
11254
diff
changeset
|
465 ppcle-* | powerpclittle-*) |
|
999e039b498b
Add powerpc little endian support; Add powerpc variants; Add pentium variants
Michael Meissner <gnu@the-meissners.org>
parents:
11254
diff
changeset
|
466 basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` |
|
999e039b498b
Add powerpc little endian support; Add powerpc variants; Add pentium variants
Michael Meissner <gnu@the-meissners.org>
parents:
11254
diff
changeset
|
467 ;; |
|
5609
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
468 ps2) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
469 basic_machine=i386-ibm |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
470 ;; |
|
11084
ea9524b79520
(rm400, rm600): New machine names.
Richard M. Stallman <rms@gnu.org>
parents:
10788
diff
changeset
|
471 rm[46]00) |
|
ea9524b79520
(rm400, rm600): New machine names.
Richard M. Stallman <rms@gnu.org>
parents:
10788
diff
changeset
|
472 basic_machine=mips-siemens |
|
ea9524b79520
(rm400, rm600): New machine names.
Richard M. Stallman <rms@gnu.org>
parents:
10788
diff
changeset
|
473 ;; |
|
5609
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
474 rtpc | rtpc-*) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
475 basic_machine=romp-ibm |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
476 ;; |
|
8722
5c5f80be532f
(ptx): New OS; use for Sequent.
Richard Kenner <kenner@gnu.org>
parents:
8720
diff
changeset
|
477 sequent) |
|
5c5f80be532f
(ptx): New OS; use for Sequent.
Richard Kenner <kenner@gnu.org>
parents:
8720
diff
changeset
|
478 basic_machine=i386-sequent |
|
5c5f80be532f
(ptx): New OS; use for Sequent.
Richard Kenner <kenner@gnu.org>
parents:
8720
diff
changeset
|
479 ;; |
|
5609
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
480 sh) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
481 basic_machine=sh-hitachi |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
482 os=-hms |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
483 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
484 sps7) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
485 basic_machine=m68k-bull |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
486 os=-sysv2 |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
487 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
488 spur) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
489 basic_machine=spur-unknown |
| 576 | 490 ;; |
| 491 sun2) | |
| 492 basic_machine=m68000-sun | |
| 493 ;; | |
| 494 sun2os3) | |
| 495 basic_machine=m68000-sun | |
| 496 os=-sunos3 | |
| 497 ;; | |
| 498 sun2os4) | |
| 499 basic_machine=m68000-sun | |
| 500 os=-sunos4 | |
| 501 ;; | |
| 502 sun3os3) | |
| 503 basic_machine=m68k-sun | |
| 504 os=-sunos3 | |
| 505 ;; | |
| 506 sun3os4) | |
| 507 basic_machine=m68k-sun | |
| 508 os=-sunos4 | |
| 509 ;; | |
| 510 sun4os3) | |
| 511 basic_machine=sparc-sun | |
| 512 os=-sunos3 | |
| 513 ;; | |
| 514 sun4os4) | |
| 515 basic_machine=sparc-sun | |
| 516 os=-sunos4 | |
| 517 ;; | |
|
10788
61c7b37349d2
(sun4sol2): Alias for sparc-sun-solaris2.
Doug Evans <dje@gnu.org>
parents:
10781
diff
changeset
|
518 sun4sol2) |
|
61c7b37349d2
(sun4sol2): Alias for sparc-sun-solaris2.
Doug Evans <dje@gnu.org>
parents:
10781
diff
changeset
|
519 basic_machine=sparc-sun |
|
61c7b37349d2
(sun4sol2): Alias for sparc-sun-solaris2.
Doug Evans <dje@gnu.org>
parents:
10781
diff
changeset
|
520 os=-solaris2 |
|
61c7b37349d2
(sun4sol2): Alias for sparc-sun-solaris2.
Doug Evans <dje@gnu.org>
parents:
10781
diff
changeset
|
521 ;; |
|
8619
a131e8501151
Rearrange handling of NetBSD ports.
Charles Hannum <mycroft@gnu.org>
parents:
8615
diff
changeset
|
522 sun3 | sun3-*) |
| 576 | 523 basic_machine=m68k-sun |
| 524 ;; | |
| 525 sun4) | |
| 526 basic_machine=sparc-sun | |
| 527 ;; | |
| 528 sun386 | sun386i | roadrunner) | |
| 529 basic_machine=i386-sun | |
| 530 ;; | |
|
5609
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
531 symmetry) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
532 basic_machine=i386-sequent |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
533 os=-dynix |
| 576 | 534 ;; |
| 535 tower | tower-32) | |
| 536 basic_machine=m68k-ncr | |
| 537 ;; | |
| 9997 | 538 udi29k) |
| 539 basic_machine=a29k-amd | |
| 540 os=-udi | |
| 541 ;; | |
| 576 | 542 ultra3) |
| 543 basic_machine=a29k-nyu | |
| 544 os=-sym1 | |
| 545 ;; | |
|
5609
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
546 vaxv) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
547 basic_machine=vax-dec |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
548 os=-sysv |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
549 ;; |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
550 vms) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
551 basic_machine=vax-dec |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
552 os=-vms |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
553 ;; |
| 576 | 554 vxworks960) |
| 555 basic_machine=i960-wrs | |
| 556 os=-vxworks | |
| 557 ;; | |
| 558 vxworks68) | |
| 559 basic_machine=m68k-wrs | |
| 560 os=-vxworks | |
| 561 ;; | |
| 11802 | 562 vxworks29k) |
| 563 basic_machine=a29k-wrs | |
| 564 os=-vxworks | |
| 565 ;; | |
|
5609
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
566 xmp) |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
567 basic_machine=xmp-cray |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
568 os=-unicos |
|
61b2daccd91e
Alphabetize the list of machine-name aliases.
Richard M. Stallman <rms@gnu.org>
parents:
5576
diff
changeset
|
569 ;; |
|
1631
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
570 xps | xps100) |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
571 basic_machine=xps100-honeywell |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
572 ;; |
| 576 | 573 none) |
| 574 basic_machine=none-none | |
| 575 os=-none | |
| 576 ;; | |
| 577 | |
| 578 # Here we handle the default manufacturer of certain CPU types. It is in | |
| 579 # some cases the only manufacturer, in others, it is the most popular. | |
| 580 mips) | |
| 581 basic_machine=mips-mips | |
| 582 ;; | |
| 583 romp) | |
| 584 basic_machine=romp-ibm | |
| 585 ;; | |
| 586 rs6000) | |
| 587 basic_machine=rs6000-ibm | |
| 588 ;; | |
| 589 vax) | |
| 590 basic_machine=vax-dec | |
| 591 ;; | |
|
9715
5cc36be39154
(pdp11): New machine name.
Richard Kenner <kenner@gnu.org>
parents:
9610
diff
changeset
|
592 pdp11) |
|
5cc36be39154
(pdp11): New machine name.
Richard Kenner <kenner@gnu.org>
parents:
9610
diff
changeset
|
593 basic_machine=pdp11-dec |
|
5cc36be39154
(pdp11): New machine name.
Richard Kenner <kenner@gnu.org>
parents:
9610
diff
changeset
|
594 ;; |
|
652
88a5b1ed98bb
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
651
diff
changeset
|
595 we32k) |
|
88a5b1ed98bb
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
651
diff
changeset
|
596 basic_machine=we32k-att |
|
88a5b1ed98bb
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
651
diff
changeset
|
597 ;; |
| 576 | 598 sparc) |
| 599 basic_machine=sparc-sun | |
| 600 ;; | |
|
1631
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
601 cydra) |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
602 basic_machine=cydra-cydrome |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
603 ;; |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
604 orion) |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
605 basic_machine=orion-highlevel |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
606 ;; |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
607 orion105) |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
608 basic_machine=clipper-highlevel |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
609 ;; |
| 576 | 610 *) |
| 611 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 | |
| 612 exit 1 | |
| 613 ;; | |
| 614 esac | |
| 615 | |
| 616 # Here we canonicalize certain aliases for manufacturers. | |
| 617 case $basic_machine in | |
| 618 *-digital*) | |
| 619 basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` | |
| 620 ;; | |
| 621 *-commodore*) | |
| 622 basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` | |
| 623 ;; | |
| 624 *) | |
| 625 ;; | |
| 626 esac | |
| 627 | |
| 628 # Decode manufacturer-specific aliases for certain operating systems. | |
| 629 | |
|
4109
76f746324590
if [ "$os" ] --> if [ x"$os" != x"" ]
Doug Evans <dje@gnu.org>
parents:
4084
diff
changeset
|
630 if [ x"$os" != x"" ] |
| 576 | 631 then |
| 632 case $os in | |
|
1732
2dd86a54c11b
Translate sunos5 to solaris2, and solaris1 to sunos4.
Richard M. Stallman <rms@gnu.org>
parents:
1726
diff
changeset
|
633 # -solaris* is a basic system type, with this one exception. |
|
2dd86a54c11b
Translate sunos5 to solaris2, and solaris1 to sunos4.
Richard M. Stallman <rms@gnu.org>
parents:
1726
diff
changeset
|
634 -solaris1 | -solaris1.*) |
|
2dd86a54c11b
Translate sunos5 to solaris2, and solaris1 to sunos4.
Richard M. Stallman <rms@gnu.org>
parents:
1726
diff
changeset
|
635 os=`echo $os | sed -e 's|solaris1|sunos4|'` |
|
2dd86a54c11b
Translate sunos5 to solaris2, and solaris1 to sunos4.
Richard M. Stallman <rms@gnu.org>
parents:
1726
diff
changeset
|
636 ;; |
|
4055
e5d455b14d82
Make `solaris' reflect the most recent major release.
Doug Evans <dje@gnu.org>
parents:
3934
diff
changeset
|
637 -solaris) |
|
e5d455b14d82
Make `solaris' reflect the most recent major release.
Doug Evans <dje@gnu.org>
parents:
3934
diff
changeset
|
638 os=-solaris2 |
|
e5d455b14d82
Make `solaris' reflect the most recent major release.
Doug Evans <dje@gnu.org>
parents:
3934
diff
changeset
|
639 ;; |
|
10577
310503142301
(unixware, svr4): Treat as synonyms for sysv4.
Richard Kenner <kenner@gnu.org>
parents:
10033
diff
changeset
|
640 -unixware* | svr4*) |
|
310503142301
(unixware, svr4): Treat as synonyms for sysv4.
Richard Kenner <kenner@gnu.org>
parents:
10033
diff
changeset
|
641 os=-sysv4 |
|
310503142301
(unixware, svr4): Treat as synonyms for sysv4.
Richard Kenner <kenner@gnu.org>
parents:
10033
diff
changeset
|
642 ;; |
|
9255
07d0aeb633d8
Translate -gnu/linux* to -linux*.
Richard M. Stallman <rms@gnu.org>
parents:
9247
diff
changeset
|
643 -gnu/linux*) |
|
07d0aeb633d8
Translate -gnu/linux* to -linux*.
Richard M. Stallman <rms@gnu.org>
parents:
9247
diff
changeset
|
644 os=`echo $os | sed -e 's|gnu/linux|linux|'` |
|
07d0aeb633d8
Translate -gnu/linux* to -linux*.
Richard M. Stallman <rms@gnu.org>
parents:
9247
diff
changeset
|
645 ;; |
| 576 | 646 # First accept the basic system types. |
| 647 # The portable systems comes first. | |
|
11254
21402b5c0bfc
Accept -lites* as op sys.
Richard M. Stallman <rms@gnu.org>
parents:
11084
diff
changeset
|
648 # Each alternative MUST END IN A *, to match a version number. |
|
3914
a16c11d3670f
Recognize -sysv* after -sysvr4.
Richard M. Stallman <rms@gnu.org>
parents:
3904
diff
changeset
|
649 # -sysv* is not here because it comes later, after sysvr4. |
|
3934
0bd0d7678a09
Recognize `gnu' as a valid operating system. Sheesh.
Roland McGrath <roland@gnu.org>
parents:
3914
diff
changeset
|
650 -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ |
|
13736
4e7c5362c9bd
(i*86*) Change [345] to [3456]
Stan Cox <scox@redhat.com>
parents:
13729
diff
changeset
|
651 | -vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[3456]* \ |
| 7089 | 652 | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ |
|
13692
f5fbef729d00
Recognize aof in the OS field.
Erich Stefan Boleyn <erich@uruk.org>
parents:
12247
diff
changeset
|
653 | -amigados* | -msdos* | -newsos* | -unicos* | -aof* | -aos* \ |
| 2675 | 654 | -nindy* | -vxworks* | -ebmon* | -hms* | -mvs* | -clix* \ |
| 3382 | 655 | -riscos* | -linux* | -uniplus* | -iris* | -rtu* | -xenix* \ |
| 6509 | 656 | -hiux* | -386bsd* | -netbsd* | -freebsd* | -riscix* \ |
|
8722
5c5f80be532f
(ptx): New OS; use for Sequent.
Richard Kenner <kenner@gnu.org>
parents:
8720
diff
changeset
|
657 | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* \ |
|
11254
21402b5c0bfc
Accept -lites* as op sys.
Richard M. Stallman <rms@gnu.org>
parents:
11084
diff
changeset
|
658 | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ |
|
14472
8979515dac09
Add cygwin32; Put eabi .sdata2/.sbss2 into read-only memory
Michael Meissner <gnu@the-meissners.org>
parents:
14448
diff
changeset
|
659 | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ |
|
14547
eac92e94d52f
Fix typo in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
14539
diff
changeset
|
660 | -cygwin32* | -pe* | -psos*) |
|
11254
21402b5c0bfc
Accept -lites* as op sys.
Richard M. Stallman <rms@gnu.org>
parents:
11084
diff
changeset
|
661 # Remember, each alternative MUST END IN *, to match a version number. |
| 576 | 662 ;; |
|
1732
2dd86a54c11b
Translate sunos5 to solaris2, and solaris1 to sunos4.
Richard M. Stallman <rms@gnu.org>
parents:
1726
diff
changeset
|
663 -sunos5*) |
|
2dd86a54c11b
Translate sunos5 to solaris2, and solaris1 to sunos4.
Richard M. Stallman <rms@gnu.org>
parents:
1726
diff
changeset
|
664 os=`echo $os | sed -e 's|sunos5|solaris2|'` |
|
2dd86a54c11b
Translate sunos5 to solaris2, and solaris1 to sunos4.
Richard M. Stallman <rms@gnu.org>
parents:
1726
diff
changeset
|
665 ;; |
|
2dd86a54c11b
Translate sunos5 to solaris2, and solaris1 to sunos4.
Richard M. Stallman <rms@gnu.org>
parents:
1726
diff
changeset
|
666 -sunos6*) |
|
2dd86a54c11b
Translate sunos5 to solaris2, and solaris1 to sunos4.
Richard M. Stallman <rms@gnu.org>
parents:
1726
diff
changeset
|
667 os=`echo $os | sed -e 's|sunos6|solaris3|'` |
|
2dd86a54c11b
Translate sunos5 to solaris2, and solaris1 to sunos4.
Richard M. Stallman <rms@gnu.org>
parents:
1726
diff
changeset
|
668 ;; |
| 576 | 669 -osfrose*) |
|
674
d5c90f190057
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
654
diff
changeset
|
670 os=-osfrose |
| 576 | 671 ;; |
| 672 -osf*) | |
|
674
d5c90f190057
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
654
diff
changeset
|
673 os=-osf |
| 576 | 674 ;; |
| 742 | 675 -utek*) |
| 676 os=-bsd | |
| 677 ;; | |
| 576 | 678 -dynix*) |
| 679 os=-bsd | |
| 680 ;; | |
| 681 -acis*) | |
| 682 os=-aos | |
| 683 ;; | |
| 684 -ctix* | -uts*) | |
| 685 os=-sysv | |
| 686 ;; | |
|
14210
e6659990d8f8
Default OS to nextstep if machine vendor is Next.
Richard M. Stallman <rms@gnu.org>
parents:
14191
diff
changeset
|
687 -ns2 ) |
|
e6659990d8f8
Default OS to nextstep if machine vendor is Next.
Richard M. Stallman <rms@gnu.org>
parents:
14191
diff
changeset
|
688 os=-nextstep2 |
|
e6659990d8f8
Default OS to nextstep if machine vendor is Next.
Richard M. Stallman <rms@gnu.org>
parents:
14191
diff
changeset
|
689 ;; |
|
11084
ea9524b79520
(rm400, rm600): New machine names.
Richard M. Stallman <rms@gnu.org>
parents:
10788
diff
changeset
|
690 # Preserve the version number of sinix5. |
|
ea9524b79520
(rm400, rm600): New machine names.
Richard M. Stallman <rms@gnu.org>
parents:
10788
diff
changeset
|
691 -sinix5.*) |
|
ea9524b79520
(rm400, rm600): New machine names.
Richard M. Stallman <rms@gnu.org>
parents:
10788
diff
changeset
|
692 os=`echo $os | sed -e 's|sinix|sysv|'` |
|
ea9524b79520
(rm400, rm600): New machine names.
Richard M. Stallman <rms@gnu.org>
parents:
10788
diff
changeset
|
693 ;; |
|
ea9524b79520
(rm400, rm600): New machine names.
Richard M. Stallman <rms@gnu.org>
parents:
10788
diff
changeset
|
694 -sinix*) |
|
ea9524b79520
(rm400, rm600): New machine names.
Richard M. Stallman <rms@gnu.org>
parents:
10788
diff
changeset
|
695 os=-sysv4 |
|
ea9524b79520
(rm400, rm600): New machine names.
Richard M. Stallman <rms@gnu.org>
parents:
10788
diff
changeset
|
696 ;; |
| 576 | 697 -triton*) |
| 698 os=-sysv3 | |
| 699 ;; | |
| 700 -oss*) | |
| 701 os=-sysv3 | |
| 702 ;; | |
| 703 -svr4) | |
| 704 os=-sysv4 | |
| 705 ;; | |
|
3914
a16c11d3670f
Recognize -sysv* after -sysvr4.
Richard M. Stallman <rms@gnu.org>
parents:
3904
diff
changeset
|
706 -svr3) |
|
a16c11d3670f
Recognize -sysv* after -sysvr4.
Richard M. Stallman <rms@gnu.org>
parents:
3904
diff
changeset
|
707 os=-sysv3 |
|
a16c11d3670f
Recognize -sysv* after -sysvr4.
Richard M. Stallman <rms@gnu.org>
parents:
3904
diff
changeset
|
708 ;; |
|
3896
bea021b3124a
Convert ...-sysvr4 into ...-sysv4.
Richard M. Stallman <rms@gnu.org>
parents:
3382
diff
changeset
|
709 -sysvr4) |
|
bea021b3124a
Convert ...-sysvr4 into ...-sysv4.
Richard M. Stallman <rms@gnu.org>
parents:
3382
diff
changeset
|
710 os=-sysv4 |
|
bea021b3124a
Convert ...-sysvr4 into ...-sysv4.
Richard M. Stallman <rms@gnu.org>
parents:
3382
diff
changeset
|
711 ;; |
|
3914
a16c11d3670f
Recognize -sysv* after -sysvr4.
Richard M. Stallman <rms@gnu.org>
parents:
3904
diff
changeset
|
712 # This must come after -sysvr4. |
|
a16c11d3670f
Recognize -sysv* after -sysvr4.
Richard M. Stallman <rms@gnu.org>
parents:
3904
diff
changeset
|
713 -sysv*) |
| 576 | 714 ;; |
|
1627
1c2f6bc3d8fe
* config.sub: Added Xenix operating system.
Jim Blandy <jimb@redhat.com>
parents:
1545
diff
changeset
|
715 -xenix) |
|
1c2f6bc3d8fe
* config.sub: Added Xenix operating system.
Jim Blandy <jimb@redhat.com>
parents:
1545
diff
changeset
|
716 os=-xenix |
|
1c2f6bc3d8fe
* config.sub: Added Xenix operating system.
Jim Blandy <jimb@redhat.com>
parents:
1545
diff
changeset
|
717 ;; |
|
645
57295fc40ac3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
631
diff
changeset
|
718 -none) |
|
57295fc40ac3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
631
diff
changeset
|
719 ;; |
| 576 | 720 *) |
| 721 # Get rid of the `-' at the beginning of $os. | |
|
7575
74474187ad78
Fix unrecognized os error message.
Richard M. Stallman <rms@gnu.org>
parents:
7323
diff
changeset
|
722 os=`echo $os | sed 's/[^-]*-//'` |
| 576 | 723 echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 |
| 724 exit 1 | |
| 725 ;; | |
| 726 esac | |
| 727 else | |
| 728 | |
| 729 # Here we handle the default operating systems that come with various machines. | |
| 730 # The value should be what the vendor currently ships out the door with their | |
| 731 # machine or put another way, the most popular os provided with the machine. | |
|
1631
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
732 |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
733 # Note that if you're going to try to match "-MANUFACTURER" here (say, |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
734 # "-sun"), then you have to tell the case statement up towards the top |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
735 # that MANUFACTURER isn't an operating system. Otherwise, code above |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
736 # will signal an error saying that MANUFACTURER isn't an operating |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
737 # system, and we'll never get to this point. |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
738 |
| 576 | 739 case $basic_machine in |
|
4806
d48a4664d92a
Recognize operating system "riscix*"; recognize acorn as vendor
Erich Stefan Boleyn <erich@uruk.org>
parents:
4689
diff
changeset
|
740 *-acorn) |
|
d48a4664d92a
Recognize operating system "riscix*"; recognize acorn as vendor
Erich Stefan Boleyn <erich@uruk.org>
parents:
4689
diff
changeset
|
741 os=-riscix1.2 |
|
d48a4664d92a
Recognize operating system "riscix*"; recognize acorn as vendor
Erich Stefan Boleyn <erich@uruk.org>
parents:
4689
diff
changeset
|
742 ;; |
|
11812
0ef485e86493
Add configuration for semi-hosted ARM.
Erich Stefan Boleyn <erich@uruk.org>
parents:
11802
diff
changeset
|
743 arm*-semi) |
|
0ef485e86493
Add configuration for semi-hosted ARM.
Erich Stefan Boleyn <erich@uruk.org>
parents:
11802
diff
changeset
|
744 os=-aout |
|
0ef485e86493
Add configuration for semi-hosted ARM.
Erich Stefan Boleyn <erich@uruk.org>
parents:
11802
diff
changeset
|
745 ;; |
|
9715
5cc36be39154
(pdp11): New machine name.
Richard Kenner <kenner@gnu.org>
parents:
9610
diff
changeset
|
746 pdp11-*) |
|
5cc36be39154
(pdp11): New machine name.
Richard Kenner <kenner@gnu.org>
parents:
9610
diff
changeset
|
747 os=-none |
|
5cc36be39154
(pdp11): New machine name.
Richard Kenner <kenner@gnu.org>
parents:
9610
diff
changeset
|
748 ;; |
| 576 | 749 *-dec | vax-*) |
|
654
6d56ce1261a7
*** empty log message ***
Michael Meissner <gnu@the-meissners.org>
parents:
653
diff
changeset
|
750 os=-ultrix4.2 |
| 576 | 751 ;; |
|
9990
6a72b1f71ee4
Accept -domain as OS, and make it default for Apollo.
Richard M. Stallman <rms@gnu.org>
parents:
9715
diff
changeset
|
752 m68*-apollo) |
|
6a72b1f71ee4
Accept -domain as OS, and make it default for Apollo.
Richard M. Stallman <rms@gnu.org>
parents:
9715
diff
changeset
|
753 os=-domain |
|
6a72b1f71ee4
Accept -domain as OS, and make it default for Apollo.
Richard M. Stallman <rms@gnu.org>
parents:
9715
diff
changeset
|
754 ;; |
| 576 | 755 i386-sun) |
|
654
6d56ce1261a7
*** empty log message ***
Michael Meissner <gnu@the-meissners.org>
parents:
653
diff
changeset
|
756 os=-sunos4.0.2 |
| 576 | 757 ;; |
| 758 m68000-sun) | |
| 759 os=-sunos3 | |
| 760 # This also exists in the configure program, but was not the | |
| 761 # default. | |
| 762 # os=-sunos4 | |
| 763 ;; | |
| 764 *-tti) # must be before sparc entry or we get the wrong os. | |
| 765 os=-sysv3 | |
| 766 ;; | |
| 767 sparc-* | *-sun) | |
|
654
6d56ce1261a7
*** empty log message ***
Michael Meissner <gnu@the-meissners.org>
parents:
653
diff
changeset
|
768 os=-sunos4.1.1 |
| 576 | 769 ;; |
| 770 *-ibm) | |
| 771 os=-aix | |
| 772 ;; | |
| 773 *-hp) | |
| 774 os=-hpux | |
| 775 ;; | |
| 4901 | 776 *-hitachi) |
| 777 os=-hiux | |
| 778 ;; | |
|
1631
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
779 i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) |
| 576 | 780 os=-sysv |
| 781 ;; | |
| 782 *-cbm) | |
| 783 os=-amigados | |
| 784 ;; | |
| 785 *-dg) | |
| 786 os=-dgux | |
| 787 ;; | |
| 788 *-dolphin) | |
| 789 os=-sysv3 | |
| 790 ;; | |
|
8585
f9d1fe1ed6ec
Move m68k-ccur handling to proper part of file.
Richard M. Stallman <rms@gnu.org>
parents:
8206
diff
changeset
|
791 m68k-ccur) |
|
f9d1fe1ed6ec
Move m68k-ccur handling to proper part of file.
Richard M. Stallman <rms@gnu.org>
parents:
8206
diff
changeset
|
792 os=-rtu |
|
f9d1fe1ed6ec
Move m68k-ccur handling to proper part of file.
Richard M. Stallman <rms@gnu.org>
parents:
8206
diff
changeset
|
793 ;; |
| 576 | 794 m88k-omron*) |
| 795 os=-luna | |
| 796 ;; | |
|
14210
e6659990d8f8
Default OS to nextstep if machine vendor is Next.
Richard M. Stallman <rms@gnu.org>
parents:
14191
diff
changeset
|
797 *-next ) |
|
e6659990d8f8
Default OS to nextstep if machine vendor is Next.
Richard M. Stallman <rms@gnu.org>
parents:
14191
diff
changeset
|
798 os=-nextstep |
|
e6659990d8f8
Default OS to nextstep if machine vendor is Next.
Richard M. Stallman <rms@gnu.org>
parents:
14191
diff
changeset
|
799 ;; |
|
1726
e44b2de1b698
Default to bsd for *-sequent.
Richard M. Stallman <rms@gnu.org>
parents:
1631
diff
changeset
|
800 *-sequent) |
|
8722
5c5f80be532f
(ptx): New OS; use for Sequent.
Richard Kenner <kenner@gnu.org>
parents:
8720
diff
changeset
|
801 os=-ptx |
|
1726
e44b2de1b698
Default to bsd for *-sequent.
Richard M. Stallman <rms@gnu.org>
parents:
1631
diff
changeset
|
802 ;; |
| 576 | 803 *-crds) |
| 804 os=-unos | |
| 805 ;; | |
| 806 *-ns) | |
| 807 os=-genix | |
| 808 ;; | |
| 2495 | 809 i370-*) |
| 810 os=-mvs | |
| 811 ;; | |
|
2497
55f73883303f
> Default to bsd if vendor is next.
Tom Wood <wood@next.com>
parents:
2495
diff
changeset
|
812 *-next) |
|
8716
4d399ce17485
* config.sub: Cleanup NeXT support to emit nextstep*.
Per Bothner <bothner@cygnus.com>
parents:
8620
diff
changeset
|
813 os=-nextstep3 |
|
2497
55f73883303f
> Default to bsd if vendor is next.
Tom Wood <wood@next.com>
parents:
2495
diff
changeset
|
814 ;; |
|
1631
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
815 *-gould) |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
816 os=-sysv |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
817 ;; |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
818 *-highlevel) |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
819 os=-bsd |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
820 ;; |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
821 *-encore) |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
822 os=-bsd |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
823 ;; |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
824 *-sgi) |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
825 os=-irix |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
826 ;; |
|
11084
ea9524b79520
(rm400, rm600): New machine names.
Richard M. Stallman <rms@gnu.org>
parents:
10788
diff
changeset
|
827 *-siemens) |
|
ea9524b79520
(rm400, rm600): New machine names.
Richard M. Stallman <rms@gnu.org>
parents:
10788
diff
changeset
|
828 os=-sysv4 |
|
ea9524b79520
(rm400, rm600): New machine names.
Richard M. Stallman <rms@gnu.org>
parents:
10788
diff
changeset
|
829 ;; |
|
1631
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
830 *-masscomp) |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
831 os=-rtu |
|
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
832 ;; |
| 576 | 833 *) |
| 834 os=-none | |
| 835 ;; | |
| 836 esac | |
| 837 fi | |
| 838 | |
| 839 # Here we handle the case where we know the os, and the CPU type, but not the | |
| 840 # manufacturer. We pick the logical manufacturer. | |
| 841 vendor=unknown | |
| 842 case $basic_machine in | |
| 843 *-unknown) | |
| 844 case $os in | |
|
4806
d48a4664d92a
Recognize operating system "riscix*"; recognize acorn as vendor
Erich Stefan Boleyn <erich@uruk.org>
parents:
4689
diff
changeset
|
845 -riscix*) |
|
d48a4664d92a
Recognize operating system "riscix*"; recognize acorn as vendor
Erich Stefan Boleyn <erich@uruk.org>
parents:
4689
diff
changeset
|
846 vendor=acorn |
|
d48a4664d92a
Recognize operating system "riscix*"; recognize acorn as vendor
Erich Stefan Boleyn <erich@uruk.org>
parents:
4689
diff
changeset
|
847 ;; |
| 576 | 848 -sunos*) |
| 849 vendor=sun | |
| 850 ;; | |
| 4204 | 851 -lynxos*) |
| 852 vendor=lynx | |
| 853 ;; | |
| 576 | 854 -aix*) |
| 855 vendor=ibm | |
| 856 ;; | |
| 857 -hpux*) | |
| 858 vendor=hp | |
| 859 ;; | |
| 4901 | 860 -hiux*) |
| 861 vendor=hitachi | |
| 862 ;; | |
| 576 | 863 -unos*) |
| 864 vendor=crds | |
| 865 ;; | |
| 866 -dgux*) | |
| 867 vendor=dg | |
| 868 ;; | |
| 869 -luna*) | |
| 870 vendor=omron | |
| 871 ;; | |
| 872 -genix*) | |
| 873 vendor=ns | |
| 874 ;; | |
| 2495 | 875 -mvs*) |
| 876 vendor=ibm | |
| 877 ;; | |
|
8722
5c5f80be532f
(ptx): New OS; use for Sequent.
Richard Kenner <kenner@gnu.org>
parents:
8720
diff
changeset
|
878 -ptx*) |
|
5c5f80be532f
(ptx): New OS; use for Sequent.
Richard Kenner <kenner@gnu.org>
parents:
8720
diff
changeset
|
879 vendor=sequent |
|
5c5f80be532f
(ptx): New OS; use for Sequent.
Richard Kenner <kenner@gnu.org>
parents:
8720
diff
changeset
|
880 ;; |
| 10005 | 881 -vxworks*) |
| 882 vendor=wrs | |
| 883 ;; | |
| 14448 | 884 -aux*) |
| 885 vendor=apple | |
| 576 | 886 esac |
| 887 basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` | |
| 888 ;; | |
| 889 esac | |
| 890 | |
| 891 echo $basic_machine$os |
