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