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