]>
Commit | Line | Data |
---|---|---|
6599da04 | 1 | #! /bin/sh |
ae3ca0a9 | 2 | # Configuration validation subroutine script. |
74af13c1 | 3 | # Copyright 1992-2021 Free Software Foundation, Inc. |
ef0b4ef8 | 4 | |
80091f94 ML |
5 | # shellcheck disable=SC2006,SC2268 # see below for rationale |
6 | ||
7 | timestamp='2021-10-27' | |
ef0b4ef8 | 8 | |
6c9c2cf2 BE |
9 | # This file is free software; you can redistribute it and/or modify it |
10 | # under the terms of the GNU General Public License as published by | |
11 | # the Free Software Foundation; either version 3 of the License, or | |
6599da04 JM |
12 | # (at your option) any later version. |
13 | # | |
6c9c2cf2 BE |
14 | # This program is distributed in the hope that it will be useful, but |
15 | # WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
17 | # General Public License for more details. | |
6599da04 JM |
18 | # |
19 | # You should have received a copy of the GNU General Public License | |
ef7d7cf5 | 20 | # along with this program; if not, see <https://www.gnu.org/licenses/>. |
0063a823 | 21 | # |
6599da04 JM |
22 | # As a special exception to the GNU General Public License, if you |
23 | # distribute this file as part of a program that contains a | |
24 | # configuration script generated by Autoconf, you may include it under | |
6c9c2cf2 BE |
25 | # the same distribution terms that you use for the rest of that |
26 | # program. This Exception is an additional permission under section 7 | |
27 | # of the GNU General Public License, version 3 ("GPLv3"). | |
6599da04 | 28 | |
0063a823 | 29 | |
e4ff7e6a | 30 | # Please send patches to <config-patches@gnu.org>. |
7a15eef5 | 31 | # |
6599da04 JM |
32 | # Configuration subroutine to validate and canonicalize a configuration type. |
33 | # Supply the specified configuration type as an argument. | |
34 | # If it is invalid, we print an error message on stderr and exit with code 1. | |
35 | # Otherwise, we print the canonical config type on stdout and succeed. | |
36 | ||
d4c74acc | 37 | # You can get the latest version of this script from: |
74af13c1 | 38 | # https://git.savannah.gnu.org/cgit/config.git/plain/config.sub |
d4c74acc | 39 | |
6599da04 JM |
40 | # This file is supposed to be the same for all GNU packages |
41 | # and recognize all the CPU types, system types and aliases | |
42 | # that are meaningful with *any* GNU software. | |
43 | # Each package is responsible for reporting which valid configurations | |
44 | # it does not support. The user should be able to distinguish | |
45 | # a failure to support a valid configuration from a meaningless | |
46 | # configuration. | |
47 | ||
48 | # The goal of this file is to map all the various variations of a given | |
49 | # machine specification into a single specification in the form: | |
50 | # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM | |
51 | # or in some cases, the newer four-part form: | |
52 | # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM | |
53 | # It is wrong to echo any other type of specification. | |
54 | ||
80091f94 ML |
55 | # The "shellcheck disable" line above the timestamp inhibits complaints |
56 | # about features and limitations of the classic Bourne shell that were | |
57 | # superseded or lifted in POSIX. However, this script identifies a wide | |
58 | # variety of pre-POSIX systems that do not have POSIX shells at all, and | |
59 | # even some reasonably current systems (Solaris 10 as case-in-point) still | |
60 | # have a pre-POSIX /bin/sh. | |
61 | ||
62 | me=`echo "$0" | sed -e 's,.*/,,'` | |
6599da04 | 63 | |
ef0b4ef8 | 64 | usage="\ |
cfe67e03 | 65 | Usage: $0 [OPTION] CPU-MFR-OPSYS or ALIAS |
ef0b4ef8 PT |
66 | |
67 | Canonicalize a configuration name. | |
68 | ||
ef7d7cf5 | 69 | Options: |
ae3ca0a9 PE |
70 | -h, --help print this help, then exit |
71 | -t, --time-stamp print date of last modification, then exit | |
72 | -v, --version print version number, then exit | |
73 | ||
74 | Report bugs and patches to <config-patches@gnu.org>." | |
75 | ||
76 | version="\ | |
77 | GNU config.sub ($timestamp) | |
78 | ||
74af13c1 | 79 | Copyright 1992-2021 Free Software Foundation, Inc. |
ae3ca0a9 PE |
80 | |
81 | This is free software; see the source for copying conditions. There is NO | |
82 | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." | |
ef0b4ef8 PT |
83 | |
84 | help=" | |
85 | Try \`$me --help' for more information." | |
86 | ||
87 | # Parse command line | |
88 | while test $# -gt 0 ; do | |
ae3ca0a9 PE |
89 | case $1 in |
90 | --time-stamp | --time* | -t ) | |
0063a823 | 91 | echo "$timestamp" ; exit ;; |
ae3ca0a9 | 92 | --version | -v ) |
0063a823 | 93 | echo "$version" ; exit ;; |
ef0b4ef8 | 94 | --help | --h* | -h ) |
0063a823 | 95 | echo "$usage"; exit ;; |
ef0b4ef8 PT |
96 | -- ) # Stop option processing |
97 | shift; break ;; | |
98 | - ) # Use stdin as input. | |
99 | break ;; | |
100 | -* ) | |
5227609c | 101 | echo "$me: invalid option $1$help" >&2 |
ef0b4ef8 PT |
102 | exit 1 ;; |
103 | ||
104 | *local*) | |
105 | # First pass through any local machine types. | |
29305f60 | 106 | echo "$1" |
0063a823 | 107 | exit ;; |
ef0b4ef8 PT |
108 | |
109 | * ) | |
110 | break ;; | |
111 | esac | |
112 | done | |
113 | ||
114 | case $# in | |
115 | 0) echo "$me: missing argument$help" >&2 | |
116 | exit 1;; | |
117 | 1) ;; | |
118 | *) echo "$me: too many arguments$help" >&2 | |
119 | exit 1;; | |
6599da04 JM |
120 | esac |
121 | ||
29305f60 | 122 | # Split fields of configuration type |
5227609c | 123 | # shellcheck disable=SC2162 |
80091f94 | 124 | saved_IFS=$IFS |
5227609c | 125 | IFS="-" read field1 field2 field3 field4 <<EOF |
29305f60 BE |
126 | $1 |
127 | EOF | |
80091f94 | 128 | IFS=$saved_IFS |
6599da04 | 129 | |
29305f60 BE |
130 | # Separate into logical components for further validation |
131 | case $1 in | |
132 | *-*-*-*-*) | |
133 | echo Invalid configuration \`"$1"\': more than four components >&2 | |
134 | exit 1 | |
95e5b9a4 | 135 | ;; |
29305f60 BE |
136 | *-*-*-*) |
137 | basic_machine=$field1-$field2 | |
53a90650 | 138 | basic_os=$field3-$field4 |
6599da04 | 139 | ;; |
29305f60 BE |
140 | *-*-*) |
141 | # Ambiguous whether COMPANY is present, or skipped and KERNEL-OS is two | |
142 | # parts | |
143 | maybe_os=$field2-$field3 | |
144 | case $maybe_os in | |
53a90650 | 145 | nto-qnx* | linux-* | uclinux-uclibc* \ |
29305f60 BE |
146 | | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* \ |
147 | | netbsd*-eabi* | kopensolaris*-gnu* | cloudabi*-eabi* \ | |
148 | | storm-chaos* | os2-emx* | rtmk-nova*) | |
149 | basic_machine=$field1 | |
53a90650 | 150 | basic_os=$maybe_os |
29305f60 BE |
151 | ;; |
152 | android-linux) | |
153 | basic_machine=$field1-unknown | |
53a90650 | 154 | basic_os=linux-android |
29305f60 BE |
155 | ;; |
156 | *) | |
157 | basic_machine=$field1-$field2 | |
53a90650 | 158 | basic_os=$field3 |
29305f60 BE |
159 | ;; |
160 | esac | |
6599da04 | 161 | ;; |
29305f60 | 162 | *-*) |
5227609c RO |
163 | # A lone config we happen to match not fitting any pattern |
164 | case $field1-$field2 in | |
165 | decstation-3100) | |
166 | basic_machine=mips-dec | |
53a90650 | 167 | basic_os= |
29305f60 | 168 | ;; |
5227609c RO |
169 | *-*) |
170 | # Second component is usually, but not always the OS | |
171 | case $field2 in | |
172 | # Prevent following clause from handling this valid os | |
173 | sun*os*) | |
174 | basic_machine=$field1 | |
53a90650 | 175 | basic_os=$field2 |
5227609c | 176 | ;; |
80091f94 ML |
177 | zephyr*) |
178 | basic_machine=$field1-unknown | |
179 | basic_os=$field2 | |
180 | ;; | |
5227609c RO |
181 | # Manufacturers |
182 | dec* | mips* | sequent* | encore* | pc533* | sgi* | sony* \ | |
183 | | att* | 7300* | 3300* | delta* | motorola* | sun[234]* \ | |
184 | | unicom* | ibm* | next | hp | isi* | apollo | altos* \ | |
185 | | convergent* | ncr* | news | 32* | 3600* | 3100* \ | |
186 | | hitachi* | c[123]* | convex* | sun | crds | omron* | dg \ | |
187 | | ultra | tti* | harris | dolphin | highlevel | gould \ | |
188 | | cbm | ns | masscomp | apple | axis | knuth | cray \ | |
189 | | microblaze* | sim | cisco \ | |
190 | | oki | wec | wrs | winbond) | |
191 | basic_machine=$field1-$field2 | |
53a90650 | 192 | basic_os= |
5227609c RO |
193 | ;; |
194 | *) | |
195 | basic_machine=$field1 | |
53a90650 | 196 | basic_os=$field2 |
5227609c RO |
197 | ;; |
198 | esac | |
199 | ;; | |
29305f60 | 200 | esac |
6599da04 | 201 | ;; |
29305f60 BE |
202 | *) |
203 | # Convert single-component short-hands not valid as part of | |
204 | # multi-component configurations. | |
205 | case $field1 in | |
206 | 386bsd) | |
207 | basic_machine=i386-pc | |
53a90650 | 208 | basic_os=bsd |
29305f60 BE |
209 | ;; |
210 | a29khif) | |
211 | basic_machine=a29k-amd | |
53a90650 | 212 | basic_os=udi |
29305f60 BE |
213 | ;; |
214 | adobe68k) | |
215 | basic_machine=m68010-adobe | |
53a90650 | 216 | basic_os=scout |
29305f60 | 217 | ;; |
5227609c RO |
218 | alliant) |
219 | basic_machine=fx80-alliant | |
53a90650 | 220 | basic_os= |
5227609c RO |
221 | ;; |
222 | altos | altos3068) | |
223 | basic_machine=m68k-altos | |
53a90650 | 224 | basic_os= |
5227609c | 225 | ;; |
29305f60 BE |
226 | am29k) |
227 | basic_machine=a29k-none | |
53a90650 | 228 | basic_os=bsd |
29305f60 BE |
229 | ;; |
230 | amdahl) | |
231 | basic_machine=580-amdahl | |
53a90650 | 232 | basic_os=sysv |
29305f60 | 233 | ;; |
5227609c RO |
234 | amiga) |
235 | basic_machine=m68k-unknown | |
53a90650 | 236 | basic_os= |
5227609c | 237 | ;; |
29305f60 BE |
238 | amigaos | amigados) |
239 | basic_machine=m68k-unknown | |
53a90650 | 240 | basic_os=amigaos |
29305f60 BE |
241 | ;; |
242 | amigaunix | amix) | |
243 | basic_machine=m68k-unknown | |
53a90650 | 244 | basic_os=sysv4 |
29305f60 BE |
245 | ;; |
246 | apollo68) | |
247 | basic_machine=m68k-apollo | |
53a90650 | 248 | basic_os=sysv |
29305f60 BE |
249 | ;; |
250 | apollo68bsd) | |
251 | basic_machine=m68k-apollo | |
53a90650 | 252 | basic_os=bsd |
29305f60 BE |
253 | ;; |
254 | aros) | |
255 | basic_machine=i386-pc | |
53a90650 | 256 | basic_os=aros |
29305f60 BE |
257 | ;; |
258 | aux) | |
259 | basic_machine=m68k-apple | |
53a90650 | 260 | basic_os=aux |
29305f60 BE |
261 | ;; |
262 | balance) | |
263 | basic_machine=ns32k-sequent | |
53a90650 | 264 | basic_os=dynix |
29305f60 BE |
265 | ;; |
266 | blackfin) | |
267 | basic_machine=bfin-unknown | |
53a90650 | 268 | basic_os=linux |
29305f60 BE |
269 | ;; |
270 | cegcc) | |
271 | basic_machine=arm-unknown | |
53a90650 | 272 | basic_os=cegcc |
29305f60 | 273 | ;; |
5227609c RO |
274 | convex-c1) |
275 | basic_machine=c1-convex | |
53a90650 | 276 | basic_os=bsd |
5227609c RO |
277 | ;; |
278 | convex-c2) | |
279 | basic_machine=c2-convex | |
53a90650 | 280 | basic_os=bsd |
5227609c RO |
281 | ;; |
282 | convex-c32) | |
283 | basic_machine=c32-convex | |
53a90650 | 284 | basic_os=bsd |
5227609c RO |
285 | ;; |
286 | convex-c34) | |
287 | basic_machine=c34-convex | |
53a90650 | 288 | basic_os=bsd |
5227609c RO |
289 | ;; |
290 | convex-c38) | |
291 | basic_machine=c38-convex | |
53a90650 | 292 | basic_os=bsd |
5227609c | 293 | ;; |
29305f60 BE |
294 | cray) |
295 | basic_machine=j90-cray | |
53a90650 | 296 | basic_os=unicos |
29305f60 | 297 | ;; |
5227609c RO |
298 | crds | unos) |
299 | basic_machine=m68k-crds | |
53a90650 | 300 | basic_os= |
5227609c RO |
301 | ;; |
302 | da30) | |
303 | basic_machine=m68k-da30 | |
53a90650 | 304 | basic_os= |
5227609c RO |
305 | ;; |
306 | decstation | pmax | pmin | dec3100 | decstatn) | |
307 | basic_machine=mips-dec | |
53a90650 | 308 | basic_os= |
29305f60 BE |
309 | ;; |
310 | delta88) | |
311 | basic_machine=m88k-motorola | |
53a90650 | 312 | basic_os=sysv3 |
29305f60 BE |
313 | ;; |
314 | dicos) | |
315 | basic_machine=i686-pc | |
53a90650 | 316 | basic_os=dicos |
29305f60 BE |
317 | ;; |
318 | djgpp) | |
319 | basic_machine=i586-pc | |
53a90650 | 320 | basic_os=msdosdjgpp |
29305f60 BE |
321 | ;; |
322 | ebmon29k) | |
323 | basic_machine=a29k-amd | |
53a90650 | 324 | basic_os=ebmon |
29305f60 BE |
325 | ;; |
326 | es1800 | OSE68k | ose68k | ose | OSE) | |
327 | basic_machine=m68k-ericsson | |
53a90650 | 328 | basic_os=ose |
29305f60 BE |
329 | ;; |
330 | gmicro) | |
331 | basic_machine=tron-gmicro | |
53a90650 | 332 | basic_os=sysv |
29305f60 BE |
333 | ;; |
334 | go32) | |
335 | basic_machine=i386-pc | |
53a90650 | 336 | basic_os=go32 |
29305f60 BE |
337 | ;; |
338 | h8300hms) | |
339 | basic_machine=h8300-hitachi | |
53a90650 | 340 | basic_os=hms |
29305f60 BE |
341 | ;; |
342 | h8300xray) | |
343 | basic_machine=h8300-hitachi | |
53a90650 | 344 | basic_os=xray |
29305f60 BE |
345 | ;; |
346 | h8500hms) | |
347 | basic_machine=h8500-hitachi | |
53a90650 | 348 | basic_os=hms |
29305f60 BE |
349 | ;; |
350 | harris) | |
351 | basic_machine=m88k-harris | |
53a90650 | 352 | basic_os=sysv3 |
29305f60 | 353 | ;; |
b7b1f657 | 354 | hp300 | hp300hpux) |
5227609c | 355 | basic_machine=m68k-hp |
53a90650 | 356 | basic_os=hpux |
5227609c | 357 | ;; |
29305f60 BE |
358 | hp300bsd) |
359 | basic_machine=m68k-hp | |
53a90650 | 360 | basic_os=bsd |
29305f60 | 361 | ;; |
29305f60 BE |
362 | hppaosf) |
363 | basic_machine=hppa1.1-hp | |
53a90650 | 364 | basic_os=osf |
29305f60 BE |
365 | ;; |
366 | hppro) | |
367 | basic_machine=hppa1.1-hp | |
53a90650 | 368 | basic_os=proelf |
29305f60 BE |
369 | ;; |
370 | i386mach) | |
371 | basic_machine=i386-mach | |
53a90650 | 372 | basic_os=mach |
29305f60 | 373 | ;; |
29305f60 BE |
374 | isi68 | isi) |
375 | basic_machine=m68k-isi | |
53a90650 | 376 | basic_os=sysv |
29305f60 BE |
377 | ;; |
378 | m68knommu) | |
379 | basic_machine=m68k-unknown | |
53a90650 | 380 | basic_os=linux |
29305f60 BE |
381 | ;; |
382 | magnum | m3230) | |
383 | basic_machine=mips-mips | |
53a90650 | 384 | basic_os=sysv |
29305f60 BE |
385 | ;; |
386 | merlin) | |
387 | basic_machine=ns32k-utek | |
53a90650 | 388 | basic_os=sysv |
29305f60 BE |
389 | ;; |
390 | mingw64) | |
391 | basic_machine=x86_64-pc | |
53a90650 | 392 | basic_os=mingw64 |
29305f60 BE |
393 | ;; |
394 | mingw32) | |
395 | basic_machine=i686-pc | |
53a90650 | 396 | basic_os=mingw32 |
29305f60 BE |
397 | ;; |
398 | mingw32ce) | |
399 | basic_machine=arm-unknown | |
53a90650 | 400 | basic_os=mingw32ce |
29305f60 BE |
401 | ;; |
402 | monitor) | |
403 | basic_machine=m68k-rom68k | |
53a90650 | 404 | basic_os=coff |
29305f60 BE |
405 | ;; |
406 | morphos) | |
407 | basic_machine=powerpc-unknown | |
53a90650 | 408 | basic_os=morphos |
29305f60 BE |
409 | ;; |
410 | moxiebox) | |
411 | basic_machine=moxie-unknown | |
53a90650 | 412 | basic_os=moxiebox |
29305f60 BE |
413 | ;; |
414 | msdos) | |
415 | basic_machine=i386-pc | |
53a90650 | 416 | basic_os=msdos |
29305f60 BE |
417 | ;; |
418 | msys) | |
419 | basic_machine=i686-pc | |
53a90650 | 420 | basic_os=msys |
29305f60 BE |
421 | ;; |
422 | mvs) | |
423 | basic_machine=i370-ibm | |
53a90650 | 424 | basic_os=mvs |
29305f60 BE |
425 | ;; |
426 | nacl) | |
427 | basic_machine=le32-unknown | |
53a90650 | 428 | basic_os=nacl |
29305f60 BE |
429 | ;; |
430 | ncr3000) | |
431 | basic_machine=i486-ncr | |
53a90650 | 432 | basic_os=sysv4 |
29305f60 BE |
433 | ;; |
434 | netbsd386) | |
5227609c | 435 | basic_machine=i386-pc |
53a90650 | 436 | basic_os=netbsd |
29305f60 BE |
437 | ;; |
438 | netwinder) | |
439 | basic_machine=armv4l-rebel | |
53a90650 | 440 | basic_os=linux |
29305f60 BE |
441 | ;; |
442 | news | news700 | news800 | news900) | |
443 | basic_machine=m68k-sony | |
53a90650 | 444 | basic_os=newsos |
29305f60 BE |
445 | ;; |
446 | news1000) | |
447 | basic_machine=m68030-sony | |
53a90650 | 448 | basic_os=newsos |
29305f60 BE |
449 | ;; |
450 | necv70) | |
451 | basic_machine=v70-nec | |
53a90650 | 452 | basic_os=sysv |
29305f60 BE |
453 | ;; |
454 | nh3000) | |
455 | basic_machine=m68k-harris | |
53a90650 | 456 | basic_os=cxux |
29305f60 BE |
457 | ;; |
458 | nh[45]000) | |
459 | basic_machine=m88k-harris | |
53a90650 | 460 | basic_os=cxux |
29305f60 BE |
461 | ;; |
462 | nindy960) | |
463 | basic_machine=i960-intel | |
53a90650 | 464 | basic_os=nindy |
29305f60 BE |
465 | ;; |
466 | mon960) | |
467 | basic_machine=i960-intel | |
53a90650 | 468 | basic_os=mon960 |
29305f60 BE |
469 | ;; |
470 | nonstopux) | |
471 | basic_machine=mips-compaq | |
53a90650 | 472 | basic_os=nonstopux |
29305f60 BE |
473 | ;; |
474 | os400) | |
475 | basic_machine=powerpc-ibm | |
53a90650 | 476 | basic_os=os400 |
29305f60 BE |
477 | ;; |
478 | OSE68000 | ose68000) | |
479 | basic_machine=m68000-ericsson | |
53a90650 | 480 | basic_os=ose |
29305f60 BE |
481 | ;; |
482 | os68k) | |
483 | basic_machine=m68k-none | |
53a90650 | 484 | basic_os=os68k |
29305f60 BE |
485 | ;; |
486 | paragon) | |
487 | basic_machine=i860-intel | |
53a90650 | 488 | basic_os=osf |
29305f60 BE |
489 | ;; |
490 | parisc) | |
491 | basic_machine=hppa-unknown | |
53a90650 IS |
492 | basic_os=linux |
493 | ;; | |
494 | psp) | |
495 | basic_machine=mipsallegrexel-sony | |
496 | basic_os=psp | |
29305f60 BE |
497 | ;; |
498 | pw32) | |
499 | basic_machine=i586-unknown | |
53a90650 | 500 | basic_os=pw32 |
29305f60 BE |
501 | ;; |
502 | rdos | rdos64) | |
503 | basic_machine=x86_64-pc | |
53a90650 | 504 | basic_os=rdos |
29305f60 BE |
505 | ;; |
506 | rdos32) | |
507 | basic_machine=i386-pc | |
53a90650 | 508 | basic_os=rdos |
29305f60 BE |
509 | ;; |
510 | rom68k) | |
511 | basic_machine=m68k-rom68k | |
53a90650 | 512 | basic_os=coff |
29305f60 BE |
513 | ;; |
514 | sa29200) | |
515 | basic_machine=a29k-amd | |
53a90650 | 516 | basic_os=udi |
29305f60 BE |
517 | ;; |
518 | sei) | |
519 | basic_machine=mips-sei | |
53a90650 | 520 | basic_os=seiux |
29305f60 | 521 | ;; |
5227609c RO |
522 | sequent) |
523 | basic_machine=i386-sequent | |
53a90650 | 524 | basic_os= |
5227609c | 525 | ;; |
29305f60 BE |
526 | sps7) |
527 | basic_machine=m68k-bull | |
53a90650 | 528 | basic_os=sysv2 |
29305f60 | 529 | ;; |
5227609c RO |
530 | st2000) |
531 | basic_machine=m68k-tandem | |
53a90650 | 532 | basic_os= |
5227609c | 533 | ;; |
29305f60 BE |
534 | stratus) |
535 | basic_machine=i860-stratus | |
53a90650 | 536 | basic_os=sysv4 |
29305f60 | 537 | ;; |
5227609c RO |
538 | sun2) |
539 | basic_machine=m68000-sun | |
53a90650 | 540 | basic_os= |
5227609c | 541 | ;; |
29305f60 BE |
542 | sun2os3) |
543 | basic_machine=m68000-sun | |
53a90650 | 544 | basic_os=sunos3 |
29305f60 BE |
545 | ;; |
546 | sun2os4) | |
547 | basic_machine=m68000-sun | |
53a90650 | 548 | basic_os=sunos4 |
29305f60 | 549 | ;; |
5227609c RO |
550 | sun3) |
551 | basic_machine=m68k-sun | |
53a90650 | 552 | basic_os= |
5227609c | 553 | ;; |
29305f60 BE |
554 | sun3os3) |
555 | basic_machine=m68k-sun | |
53a90650 | 556 | basic_os=sunos3 |
29305f60 BE |
557 | ;; |
558 | sun3os4) | |
559 | basic_machine=m68k-sun | |
53a90650 | 560 | basic_os=sunos4 |
29305f60 | 561 | ;; |
5227609c RO |
562 | sun4) |
563 | basic_machine=sparc-sun | |
53a90650 | 564 | basic_os= |
5227609c | 565 | ;; |
29305f60 BE |
566 | sun4os3) |
567 | basic_machine=sparc-sun | |
53a90650 | 568 | basic_os=sunos3 |
29305f60 BE |
569 | ;; |
570 | sun4os4) | |
571 | basic_machine=sparc-sun | |
53a90650 | 572 | basic_os=sunos4 |
29305f60 BE |
573 | ;; |
574 | sun4sol2) | |
575 | basic_machine=sparc-sun | |
53a90650 | 576 | basic_os=solaris2 |
29305f60 | 577 | ;; |
5227609c RO |
578 | sun386 | sun386i | roadrunner) |
579 | basic_machine=i386-sun | |
53a90650 | 580 | basic_os= |
5227609c | 581 | ;; |
29305f60 BE |
582 | sv1) |
583 | basic_machine=sv1-cray | |
53a90650 | 584 | basic_os=unicos |
29305f60 BE |
585 | ;; |
586 | symmetry) | |
587 | basic_machine=i386-sequent | |
53a90650 | 588 | basic_os=dynix |
29305f60 BE |
589 | ;; |
590 | t3e) | |
591 | basic_machine=alphaev5-cray | |
53a90650 | 592 | basic_os=unicos |
29305f60 BE |
593 | ;; |
594 | t90) | |
595 | basic_machine=t90-cray | |
53a90650 | 596 | basic_os=unicos |
29305f60 BE |
597 | ;; |
598 | toad1) | |
599 | basic_machine=pdp10-xkl | |
53a90650 | 600 | basic_os=tops20 |
29305f60 BE |
601 | ;; |
602 | tpf) | |
603 | basic_machine=s390x-ibm | |
53a90650 | 604 | basic_os=tpf |
29305f60 BE |
605 | ;; |
606 | udi29k) | |
607 | basic_machine=a29k-amd | |
53a90650 | 608 | basic_os=udi |
29305f60 BE |
609 | ;; |
610 | ultra3) | |
611 | basic_machine=a29k-nyu | |
53a90650 | 612 | basic_os=sym1 |
29305f60 BE |
613 | ;; |
614 | v810 | necv810) | |
615 | basic_machine=v810-nec | |
53a90650 | 616 | basic_os=none |
29305f60 BE |
617 | ;; |
618 | vaxv) | |
619 | basic_machine=vax-dec | |
53a90650 | 620 | basic_os=sysv |
29305f60 BE |
621 | ;; |
622 | vms) | |
623 | basic_machine=vax-dec | |
53a90650 | 624 | basic_os=vms |
29305f60 | 625 | ;; |
b7b1f657 JM |
626 | vsta) |
627 | basic_machine=i386-pc | |
53a90650 | 628 | basic_os=vsta |
b7b1f657 | 629 | ;; |
29305f60 BE |
630 | vxworks960) |
631 | basic_machine=i960-wrs | |
53a90650 | 632 | basic_os=vxworks |
29305f60 BE |
633 | ;; |
634 | vxworks68) | |
635 | basic_machine=m68k-wrs | |
53a90650 | 636 | basic_os=vxworks |
29305f60 BE |
637 | ;; |
638 | vxworks29k) | |
639 | basic_machine=a29k-wrs | |
53a90650 | 640 | basic_os=vxworks |
29305f60 BE |
641 | ;; |
642 | xbox) | |
643 | basic_machine=i686-pc | |
53a90650 | 644 | basic_os=mingw32 |
29305f60 BE |
645 | ;; |
646 | ymp) | |
647 | basic_machine=ymp-cray | |
53a90650 | 648 | basic_os=unicos |
29305f60 BE |
649 | ;; |
650 | *) | |
651 | basic_machine=$1 | |
53a90650 | 652 | basic_os= |
29305f60 BE |
653 | ;; |
654 | esac | |
eeda916a | 655 | ;; |
6599da04 JM |
656 | esac |
657 | ||
5227609c | 658 | # Decode 1-component or ad-hoc basic machines |
6599da04 | 659 | case $basic_machine in |
5227609c RO |
660 | # Here we handle the default manufacturer of certain CPU types. It is in |
661 | # some cases the only manufacturer, in others, it is the most popular. | |
662 | w89k) | |
663 | cpu=hppa1.1 | |
664 | vendor=winbond | |
d207ebef | 665 | ;; |
5227609c RO |
666 | op50n) |
667 | cpu=hppa1.1 | |
668 | vendor=oki | |
eeda916a | 669 | ;; |
5227609c RO |
670 | op60c) |
671 | cpu=hppa1.1 | |
672 | vendor=oki | |
8d1171cb | 673 | ;; |
5227609c RO |
674 | ibm*) |
675 | cpu=i370 | |
676 | vendor=ibm | |
f3e8ab19 | 677 | ;; |
5227609c RO |
678 | orion105) |
679 | cpu=clipper | |
680 | vendor=highlevel | |
95e5b9a4 | 681 | ;; |
5227609c RO |
682 | mac | mpw | mac-mpw) |
683 | cpu=m68k | |
684 | vendor=apple | |
f3e8ab19 | 685 | ;; |
5227609c RO |
686 | pmac | pmac-mpw) |
687 | cpu=powerpc | |
688 | vendor=apple | |
f3e8ab19 JM |
689 | ;; |
690 | ||
6599da04 JM |
691 | # Recognize the various machine names and aliases which stand |
692 | # for a CPU type and a company and sometimes even an OS. | |
6599da04 | 693 | 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) |
5227609c RO |
694 | cpu=m68000 |
695 | vendor=att | |
6599da04 JM |
696 | ;; |
697 | 3b*) | |
5227609c RO |
698 | cpu=we32k |
699 | vendor=att | |
c3220d4c | 700 | ;; |
e9d9afef | 701 | bluegene*) |
5227609c RO |
702 | cpu=powerpc |
703 | vendor=ibm | |
53a90650 | 704 | basic_os=cnk |
e9d9afef | 705 | ;; |
3cd87679 | 706 | decsystem10* | dec10*) |
5227609c RO |
707 | cpu=pdp10 |
708 | vendor=dec | |
53a90650 | 709 | basic_os=tops10 |
3cd87679 L |
710 | ;; |
711 | decsystem20* | dec20*) | |
5227609c RO |
712 | cpu=pdp10 |
713 | vendor=dec | |
53a90650 | 714 | basic_os=tops20 |
3cd87679 | 715 | ;; |
6599da04 JM |
716 | delta | 3300 | motorola-3300 | motorola-delta \ |
717 | | 3300-motorola | delta-motorola) | |
5227609c RO |
718 | cpu=m68k |
719 | vendor=motorola | |
6599da04 | 720 | ;; |
ef7d7cf5 | 721 | dpx2*) |
5227609c RO |
722 | cpu=m68k |
723 | vendor=bull | |
53a90650 | 724 | basic_os=sysv3 |
6599da04 | 725 | ;; |
6599da04 | 726 | encore | umax | mmax) |
5227609c RO |
727 | cpu=ns32k |
728 | vendor=encore | |
6599da04 | 729 | ;; |
29305f60 | 730 | elxsi) |
5227609c RO |
731 | cpu=elxsi |
732 | vendor=elxsi | |
53a90650 | 733 | basic_os=${basic_os:-bsd} |
6599da04 JM |
734 | ;; |
735 | fx2800) | |
5227609c RO |
736 | cpu=i860 |
737 | vendor=alliant | |
6599da04 JM |
738 | ;; |
739 | genix) | |
5227609c RO |
740 | cpu=ns32k |
741 | vendor=ns | |
6599da04 | 742 | ;; |
6599da04 | 743 | h3050r* | hiux*) |
5227609c RO |
744 | cpu=hppa1.1 |
745 | vendor=hitachi | |
53a90650 | 746 | basic_os=hiuxwe2 |
6599da04 | 747 | ;; |
85ee6037 | 748 | hp3k9[0-9][0-9] | hp9[0-9][0-9]) |
5227609c RO |
749 | cpu=hppa1.0 |
750 | vendor=hp | |
c4acd909 | 751 | ;; |
6599da04 | 752 | hp9k2[0-9][0-9] | hp9k31[0-9]) |
5227609c RO |
753 | cpu=m68000 |
754 | vendor=hp | |
6599da04 JM |
755 | ;; |
756 | hp9k3[2-9][0-9]) | |
5227609c RO |
757 | cpu=m68k |
758 | vendor=hp | |
6599da04 | 759 | ;; |
b1345c72 | 760 | hp9k6[0-9][0-9] | hp6[0-9][0-9]) |
5227609c RO |
761 | cpu=hppa1.0 |
762 | vendor=hp | |
228197ee | 763 | ;; |
b1345c72 | 764 | hp9k7[0-79][0-9] | hp7[0-79][0-9]) |
5227609c RO |
765 | cpu=hppa1.1 |
766 | vendor=hp | |
228197ee | 767 | ;; |
b1345c72 | 768 | hp9k78[0-9] | hp78[0-9]) |
228197ee | 769 | # FIXME: really hppa2.0-hp |
5227609c RO |
770 | cpu=hppa1.1 |
771 | vendor=hp | |
228197ee | 772 | ;; |
b1345c72 | 773 | hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) |
228197ee | 774 | # FIXME: really hppa2.0-hp |
5227609c RO |
775 | cpu=hppa1.1 |
776 | vendor=hp | |
228197ee | 777 | ;; |
b1345c72 | 778 | hp9k8[0-9][13679] | hp8[0-9][13679]) |
5227609c RO |
779 | cpu=hppa1.1 |
780 | vendor=hp | |
6599da04 JM |
781 | ;; |
782 | hp9k8[0-9][0-9] | hp8[0-9][0-9]) | |
5227609c RO |
783 | cpu=hppa1.0 |
784 | vendor=hp | |
6599da04 | 785 | ;; |
ae3ca0a9 | 786 | i*86v32) |
80091f94 | 787 | cpu=`echo "$1" | sed -e 's/86.*/86/'` |
5227609c | 788 | vendor=pc |
53a90650 | 789 | basic_os=sysv32 |
6599da04 | 790 | ;; |
ae3ca0a9 | 791 | i*86v4*) |
80091f94 | 792 | cpu=`echo "$1" | sed -e 's/86.*/86/'` |
5227609c | 793 | vendor=pc |
53a90650 | 794 | basic_os=sysv4 |
6599da04 | 795 | ;; |
ae3ca0a9 | 796 | i*86v) |
80091f94 | 797 | cpu=`echo "$1" | sed -e 's/86.*/86/'` |
5227609c | 798 | vendor=pc |
53a90650 | 799 | basic_os=sysv |
6599da04 | 800 | ;; |
ae3ca0a9 | 801 | i*86sol2) |
80091f94 | 802 | cpu=`echo "$1" | sed -e 's/86.*/86/'` |
5227609c | 803 | vendor=pc |
53a90650 | 804 | basic_os=solaris2 |
6599da04 | 805 | ;; |
29305f60 | 806 | j90 | j90-cray) |
5227609c RO |
807 | cpu=j90 |
808 | vendor=cray | |
53a90650 | 809 | basic_os=${basic_os:-unicos} |
6599da04 | 810 | ;; |
6599da04 | 811 | iris | iris4d) |
5227609c RO |
812 | cpu=mips |
813 | vendor=sgi | |
53a90650 | 814 | case $basic_os in |
29305f60 | 815 | irix*) |
6599da04 JM |
816 | ;; |
817 | *) | |
53a90650 | 818 | basic_os=irix4 |
6599da04 JM |
819 | ;; |
820 | esac | |
821 | ;; | |
6599da04 | 822 | miniframe) |
5227609c RO |
823 | cpu=m68000 |
824 | vendor=convergent | |
6599da04 | 825 | ;; |
29305f60 | 826 | *mint | mint[0-9]* | *MiNT | *MiNT[0-9]*) |
5227609c RO |
827 | cpu=m68k |
828 | vendor=atari | |
53a90650 | 829 | basic_os=mint |
b1345c72 | 830 | ;; |
6599da04 | 831 | news-3600 | risc-news) |
5227609c RO |
832 | cpu=mips |
833 | vendor=sony | |
53a90650 | 834 | basic_os=newsos |
6599da04 | 835 | ;; |
ef7d7cf5 | 836 | next | m*-next) |
5227609c RO |
837 | cpu=m68k |
838 | vendor=next | |
53a90650 | 839 | case $basic_os in |
b7b1f657 JM |
840 | openstep*) |
841 | ;; | |
842 | nextstep*) | |
6599da04 | 843 | ;; |
29305f60 | 844 | ns2*) |
53a90650 | 845 | basic_os=nextstep2 |
6599da04 JM |
846 | ;; |
847 | *) | |
53a90650 | 848 | basic_os=nextstep3 |
6599da04 JM |
849 | ;; |
850 | esac | |
851 | ;; | |
6599da04 | 852 | np1) |
5227609c RO |
853 | cpu=np1 |
854 | vendor=gould | |
6599da04 | 855 | ;; |
5227609c RO |
856 | op50n-* | op60c-*) |
857 | cpu=hppa1.1 | |
858 | vendor=oki | |
53a90650 | 859 | basic_os=proelf |
41446fec | 860 | ;; |
5227609c RO |
861 | pa-hitachi) |
862 | cpu=hppa1.1 | |
863 | vendor=hitachi | |
53a90650 | 864 | basic_os=hiuxwe2 |
41446fec | 865 | ;; |
5227609c RO |
866 | pbd) |
867 | cpu=sparc | |
868 | vendor=tti | |
ef0b4ef8 | 869 | ;; |
5227609c RO |
870 | pbb) |
871 | cpu=m68k | |
872 | vendor=tti | |
29305f60 | 873 | ;; |
5227609c RO |
874 | pc532) |
875 | cpu=ns32k | |
876 | vendor=pc532 | |
ef7d7cf5 | 877 | ;; |
5227609c RO |
878 | pn) |
879 | cpu=pn | |
880 | vendor=gould | |
b1345c72 | 881 | ;; |
5227609c RO |
882 | power) |
883 | cpu=power | |
884 | vendor=ibm | |
40fe0ec3 | 885 | ;; |
5227609c RO |
886 | ps2) |
887 | cpu=i386 | |
888 | vendor=ibm | |
c3220d4c | 889 | ;; |
5227609c RO |
890 | rm[46]00) |
891 | cpu=mips | |
892 | vendor=siemens | |
c3220d4c | 893 | ;; |
5227609c RO |
894 | rtpc | rtpc-*) |
895 | cpu=romp | |
896 | vendor=ibm | |
6599da04 | 897 | ;; |
5227609c RO |
898 | sde) |
899 | cpu=mipsisa32 | |
900 | vendor=sde | |
53a90650 | 901 | basic_os=${basic_os:-elf} |
6599da04 | 902 | ;; |
5227609c RO |
903 | simso-wrs) |
904 | cpu=sparclite | |
905 | vendor=wrs | |
53a90650 | 906 | basic_os=vxworks |
6599da04 | 907 | ;; |
5227609c RO |
908 | tower | tower-32) |
909 | cpu=m68k | |
910 | vendor=ncr | |
8d1171cb | 911 | ;; |
5227609c RO |
912 | vpp*|vx|vx-*) |
913 | cpu=f301 | |
914 | vendor=fujitsu | |
915 | ;; | |
916 | w65) | |
917 | cpu=w65 | |
918 | vendor=wdc | |
919 | ;; | |
920 | w89k-*) | |
921 | cpu=hppa1.1 | |
922 | vendor=winbond | |
53a90650 | 923 | basic_os=proelf |
8d1171cb | 924 | ;; |
5227609c RO |
925 | none) |
926 | cpu=none | |
927 | vendor=none | |
85ee6037 | 928 | ;; |
5227609c RO |
929 | leon|leon[3-9]) |
930 | cpu=sparc | |
931 | vendor=$basic_machine | |
6599da04 | 932 | ;; |
5227609c RO |
933 | leon-*|leon[3-9]-*) |
934 | cpu=sparc | |
80091f94 | 935 | vendor=`echo "$basic_machine" | sed 's/-.*//'` |
6599da04 | 936 | ;; |
5227609c RO |
937 | |
938 | *-*) | |
b7b1f657 | 939 | # shellcheck disable=SC2162 |
80091f94 | 940 | saved_IFS=$IFS |
5227609c RO |
941 | IFS="-" read cpu vendor <<EOF |
942 | $basic_machine | |
943 | EOF | |
80091f94 | 944 | IFS=$saved_IFS |
0bb41a37 | 945 | ;; |
5227609c RO |
946 | # We use `pc' rather than `unknown' |
947 | # because (1) that's what they normally are, and | |
948 | # (2) the word "unknown" tends to confuse beginning users. | |
949 | i*86 | x86_64) | |
950 | cpu=$basic_machine | |
951 | vendor=pc | |
6599da04 | 952 | ;; |
5227609c RO |
953 | # These rules are duplicated from below for sake of the special case above; |
954 | # i.e. things that normalized to x86 arches should also default to "pc" | |
955 | pc98) | |
956 | cpu=i386 | |
957 | vendor=pc | |
6599da04 | 958 | ;; |
5227609c RO |
959 | x64 | amd64) |
960 | cpu=x86_64 | |
961 | vendor=pc | |
6599da04 | 962 | ;; |
5227609c RO |
963 | # Recognize the basic CPU types without company name. |
964 | *) | |
965 | cpu=$basic_machine | |
966 | vendor=unknown | |
0bb41a37 | 967 | ;; |
5227609c RO |
968 | esac |
969 | ||
970 | unset -v basic_machine | |
971 | ||
972 | # Decode basic machines in the full and proper CPU-Company form. | |
973 | case $cpu-$vendor in | |
974 | # Here we handle the default manufacturer of certain CPU types in canonical form. It is in | |
975 | # some cases the only manufacturer, in others, it is the most popular. | |
976 | craynv-unknown) | |
977 | vendor=cray | |
53a90650 | 978 | basic_os=${basic_os:-unicosmp} |
5227609c RO |
979 | ;; |
980 | c90-unknown | c90-cray) | |
981 | vendor=cray | |
53a90650 | 982 | basic_os=${Basic_os:-unicos} |
6599da04 | 983 | ;; |
5227609c RO |
984 | fx80-unknown) |
985 | vendor=alliant | |
6599da04 | 986 | ;; |
5227609c RO |
987 | romp-unknown) |
988 | vendor=ibm | |
ab17919f | 989 | ;; |
5227609c RO |
990 | mmix-unknown) |
991 | vendor=knuth | |
6599da04 | 992 | ;; |
5227609c RO |
993 | microblaze-unknown | microblazeel-unknown) |
994 | vendor=xilinx | |
ab17919f | 995 | ;; |
5227609c RO |
996 | rs6000-unknown) |
997 | vendor=ibm | |
6599da04 | 998 | ;; |
5227609c RO |
999 | vax-unknown) |
1000 | vendor=dec | |
ab17919f | 1001 | ;; |
5227609c RO |
1002 | pdp11-unknown) |
1003 | vendor=dec | |
f6084f99 | 1004 | ;; |
5227609c RO |
1005 | we32k-unknown) |
1006 | vendor=att | |
ab17919f | 1007 | ;; |
5227609c RO |
1008 | cydra-unknown) |
1009 | vendor=cydrome | |
f6084f99 | 1010 | ;; |
5227609c RO |
1011 | i370-ibm*) |
1012 | vendor=ibm | |
6599da04 | 1013 | ;; |
5227609c RO |
1014 | orion-unknown) |
1015 | vendor=highlevel | |
6599da04 | 1016 | ;; |
5227609c RO |
1017 | xps-unknown | xps100-unknown) |
1018 | cpu=xps100 | |
1019 | vendor=honeywell | |
1020 | ;; | |
1021 | ||
1022 | # Here we normalize CPU types with a missing or matching vendor | |
1023 | dpx20-unknown | dpx20-bull) | |
1024 | cpu=rs6000 | |
1025 | vendor=bull | |
53a90650 | 1026 | basic_os=${basic_os:-bosx} |
6599da04 | 1027 | ;; |
5227609c RO |
1028 | |
1029 | # Here we normalize CPU types irrespective of the vendor | |
1030 | amd64-*) | |
1031 | cpu=x86_64 | |
c6243b4c | 1032 | ;; |
5227609c RO |
1033 | blackfin-*) |
1034 | cpu=bfin | |
53a90650 | 1035 | basic_os=linux |
c6243b4c | 1036 | ;; |
5227609c RO |
1037 | c54x-*) |
1038 | cpu=tic54x | |
5ce6f47b | 1039 | ;; |
5227609c RO |
1040 | c55x-*) |
1041 | cpu=tic55x | |
5ce6f47b | 1042 | ;; |
5227609c RO |
1043 | c6x-*) |
1044 | cpu=tic6x | |
26db814a | 1045 | ;; |
5227609c RO |
1046 | e500v[12]-*) |
1047 | cpu=powerpc | |
53a90650 | 1048 | basic_os=${basic_os}"spe" |
6599da04 | 1049 | ;; |
5227609c RO |
1050 | mips3*-*) |
1051 | cpu=mips64 | |
ace08cb8 | 1052 | ;; |
5227609c RO |
1053 | ms1-*) |
1054 | cpu=mt | |
6599da04 | 1055 | ;; |
5227609c RO |
1056 | m68knommu-*) |
1057 | cpu=m68k | |
53a90650 | 1058 | basic_os=linux |
6599da04 | 1059 | ;; |
5227609c RO |
1060 | m9s12z-* | m68hcs12z-* | hcs12z-* | s12z-*) |
1061 | cpu=s12z | |
6599da04 | 1062 | ;; |
5227609c RO |
1063 | openrisc-*) |
1064 | cpu=or32 | |
f3e8ab19 | 1065 | ;; |
5227609c RO |
1066 | parisc-*) |
1067 | cpu=hppa | |
53a90650 | 1068 | basic_os=linux |
6599da04 | 1069 | ;; |
5227609c RO |
1070 | pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) |
1071 | cpu=i586 | |
6599da04 | 1072 | ;; |
5227609c RO |
1073 | pentiumpro-* | p6-* | 6x86-* | athlon-* | athalon_*-*) |
1074 | cpu=i686 | |
6599da04 | 1075 | ;; |
5227609c RO |
1076 | pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) |
1077 | cpu=i686 | |
6599da04 | 1078 | ;; |
5227609c RO |
1079 | pentium4-*) |
1080 | cpu=i786 | |
3ca06a68 | 1081 | ;; |
5227609c RO |
1082 | pc98-*) |
1083 | cpu=i386 | |
6599da04 | 1084 | ;; |
5227609c RO |
1085 | ppc-* | ppcbe-*) |
1086 | cpu=powerpc | |
6599da04 | 1087 | ;; |
5227609c RO |
1088 | ppcle-* | powerpclittle-*) |
1089 | cpu=powerpcle | |
6599da04 | 1090 | ;; |
5227609c RO |
1091 | ppc64-*) |
1092 | cpu=powerpc64 | |
ab17919f | 1093 | ;; |
5227609c RO |
1094 | ppc64le-* | powerpc64little-*) |
1095 | cpu=powerpc64le | |
b1345c72 | 1096 | ;; |
5227609c RO |
1097 | sb1-*) |
1098 | cpu=mipsisa64sb1 | |
6599da04 | 1099 | ;; |
5227609c RO |
1100 | sb1el-*) |
1101 | cpu=mipsisa64sb1el | |
ef7d7cf5 | 1102 | ;; |
5227609c | 1103 | sh5e[lb]-*) |
80091f94 | 1104 | cpu=`echo "$cpu" | sed 's/^\(sh.\)e\(.\)$/\1\2e/'` |
6599da04 | 1105 | ;; |
5227609c RO |
1106 | spur-*) |
1107 | cpu=spur | |
e03dd84a | 1108 | ;; |
5227609c RO |
1109 | strongarm-* | thumb-*) |
1110 | cpu=arm | |
6599da04 | 1111 | ;; |
5227609c RO |
1112 | tx39-*) |
1113 | cpu=mipstx39 | |
6599da04 | 1114 | ;; |
5227609c RO |
1115 | tx39el-*) |
1116 | cpu=mipstx39el | |
6599da04 | 1117 | ;; |
5227609c RO |
1118 | x64-*) |
1119 | cpu=x86_64 | |
6599da04 | 1120 | ;; |
5227609c | 1121 | xscale-* | xscalee[bl]-*) |
80091f94 | 1122 | cpu=`echo "$cpu" | sed 's/^xscale/arm/'` |
53a90650 IS |
1123 | ;; |
1124 | arm64-*) | |
1125 | cpu=aarch64 | |
6599da04 | 1126 | ;; |
5227609c RO |
1127 | |
1128 | # Recognize the canonical CPU Types that limit and/or modify the | |
1129 | # company names they are paired with. | |
1130 | cr16-*) | |
53a90650 | 1131 | basic_os=${basic_os:-elf} |
fc4d0e82 | 1132 | ;; |
5227609c RO |
1133 | crisv32-* | etraxfs*-*) |
1134 | cpu=crisv32 | |
1135 | vendor=axis | |
6599da04 | 1136 | ;; |
5227609c RO |
1137 | cris-* | etrax*-*) |
1138 | cpu=cris | |
1139 | vendor=axis | |
6599da04 | 1140 | ;; |
5227609c | 1141 | crx-*) |
53a90650 | 1142 | basic_os=${basic_os:-elf} |
6599da04 | 1143 | ;; |
5227609c RO |
1144 | neo-tandem) |
1145 | cpu=neo | |
1146 | vendor=tandem | |
6599da04 | 1147 | ;; |
5227609c RO |
1148 | nse-tandem) |
1149 | cpu=nse | |
1150 | vendor=tandem | |
d207ebef | 1151 | ;; |
5227609c RO |
1152 | nsr-tandem) |
1153 | cpu=nsr | |
1154 | vendor=tandem | |
6599da04 | 1155 | ;; |
5227609c RO |
1156 | nsv-tandem) |
1157 | cpu=nsv | |
1158 | vendor=tandem | |
6599da04 | 1159 | ;; |
5227609c RO |
1160 | nsx-tandem) |
1161 | cpu=nsx | |
1162 | vendor=tandem | |
6599da04 | 1163 | ;; |
53a90650 IS |
1164 | mipsallegrexel-sony) |
1165 | cpu=mipsallegrexel | |
1166 | vendor=sony | |
6599da04 | 1167 | ;; |
5227609c | 1168 | tile*-*) |
53a90650 | 1169 | basic_os=${basic_os:-linux-gnu} |
ae3ca0a9 | 1170 | ;; |
5227609c | 1171 | |
6599da04 | 1172 | *) |
5227609c RO |
1173 | # Recognize the canonical CPU types that are allowed with any |
1174 | # company name. | |
1175 | case $cpu in | |
1176 | 1750a | 580 \ | |
1177 | | a29k \ | |
1178 | | aarch64 | aarch64_be \ | |
1179 | | abacus \ | |
1180 | | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] \ | |
1181 | | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] \ | |
1182 | | alphapca5[67] | alpha64pca5[67] \ | |
1183 | | am33_2.0 \ | |
1184 | | amdgcn \ | |
80091f94 | 1185 | | arc | arceb | arc32 | arc64 \ |
53a90650 | 1186 | | arm | arm[lb]e | arme[lb] | armv* \ |
5227609c RO |
1187 | | avr | avr32 \ |
1188 | | asmjs \ | |
1189 | | ba \ | |
1190 | | be32 | be64 \ | |
b7b1f657 | 1191 | | bfin | bpf | bs2000 \ |
5227609c RO |
1192 | | c[123]* | c30 | [cjt]90 | c4x \ |
1193 | | c8051 | clipper | craynv | csky | cydra \ | |
1194 | | d10v | d30v | dlx | dsp16xx \ | |
1195 | | e2k | elxsi | epiphany \ | |
1196 | | f30[01] | f700 | fido | fr30 | frv | ft32 | fx80 \ | |
1197 | | h8300 | h8500 \ | |
1198 | | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | |
1199 | | hexagon \ | |
1200 | | i370 | i*86 | i860 | i960 | ia16 | ia64 \ | |
1201 | | ip2k | iq2000 \ | |
1202 | | k1om \ | |
1203 | | le32 | le64 \ | |
1204 | | lm32 \ | |
74af13c1 | 1205 | | loongarch32 | loongarch64 | loongarchx32 \ |
5227609c | 1206 | | m32c | m32r | m32rle \ |
b7b1f657 JM |
1207 | | m5200 | m68000 | m680[012346]0 | m68360 | m683?2 | m68k \ |
1208 | | m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x \ | |
5227609c RO |
1209 | | m88110 | m88k | maxq | mb | mcore | mep | metag \ |
1210 | | microblaze | microblazeel \ | |
1211 | | mips | mipsbe | mipseb | mipsel | mipsle \ | |
1212 | | mips16 \ | |
b7b1f657 | 1213 | | mips64 | mips64eb | mips64el \ |
5227609c RO |
1214 | | mips64octeon | mips64octeonel \ |
1215 | | mips64orion | mips64orionel \ | |
1216 | | mips64r5900 | mips64r5900el \ | |
1217 | | mips64vr | mips64vrel \ | |
1218 | | mips64vr4100 | mips64vr4100el \ | |
1219 | | mips64vr4300 | mips64vr4300el \ | |
1220 | | mips64vr5000 | mips64vr5000el \ | |
1221 | | mips64vr5900 | mips64vr5900el \ | |
1222 | | mipsisa32 | mipsisa32el \ | |
1223 | | mipsisa32r2 | mipsisa32r2el \ | |
80091f94 ML |
1224 | | mipsisa32r3 | mipsisa32r3el \ |
1225 | | mipsisa32r5 | mipsisa32r5el \ | |
5227609c RO |
1226 | | mipsisa32r6 | mipsisa32r6el \ |
1227 | | mipsisa64 | mipsisa64el \ | |
1228 | | mipsisa64r2 | mipsisa64r2el \ | |
80091f94 ML |
1229 | | mipsisa64r3 | mipsisa64r3el \ |
1230 | | mipsisa64r5 | mipsisa64r5el \ | |
5227609c RO |
1231 | | mipsisa64r6 | mipsisa64r6el \ |
1232 | | mipsisa64sb1 | mipsisa64sb1el \ | |
1233 | | mipsisa64sr71k | mipsisa64sr71kel \ | |
1234 | | mipsr5900 | mipsr5900el \ | |
1235 | | mipstx39 | mipstx39el \ | |
1236 | | mmix \ | |
1237 | | mn10200 | mn10300 \ | |
1238 | | moxie \ | |
1239 | | mt \ | |
1240 | | msp430 \ | |
1241 | | nds32 | nds32le | nds32be \ | |
1242 | | nfp \ | |
1243 | | nios | nios2 | nios2eb | nios2el \ | |
b7b1f657 | 1244 | | none | np1 | ns16k | ns32k | nvptx \ |
5227609c RO |
1245 | | open8 \ |
1246 | | or1k* \ | |
1247 | | or32 \ | |
1248 | | orion \ | |
b7b1f657 | 1249 | | picochip \ |
5227609c RO |
1250 | | pdp10 | pdp11 | pj | pjl | pn | power \ |
1251 | | powerpc | powerpc64 | powerpc64le | powerpcle | powerpcspe \ | |
1252 | | pru \ | |
1253 | | pyramid \ | |
74af13c1 | 1254 | | riscv | riscv32 | riscv32be | riscv64 | riscv64be \ |
5227609c | 1255 | | rl78 | romp | rs6000 | rx \ |
53a90650 | 1256 | | s390 | s390x \ |
5227609c | 1257 | | score \ |
b7b1f657 JM |
1258 | | sh | shl \ |
1259 | | sh[1234] | sh[24]a | sh[24]ae[lb] | sh[23]e | she[lb] | sh[lb]e \ | |
5227609c RO |
1260 | | sh[1234]e[lb] | sh[12345][lb]e | sh[23]ele | sh64 | sh64le \ |
1261 | | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet \ | |
1262 | | sparclite \ | |
1263 | | sparcv8 | sparcv9 | sparcv9b | sparcv9v | sv1 | sx* \ | |
1264 | | spu \ | |
1265 | | tahoe \ | |
74af13c1 | 1266 | | thumbv7* \ |
5227609c RO |
1267 | | tic30 | tic4x | tic54x | tic55x | tic6x | tic80 \ |
1268 | | tron \ | |
1269 | | ubicom32 \ | |
b7b1f657 | 1270 | | v70 | v850 | v850e | v850e1 | v850es | v850e2 | v850e2v3 \ |
5227609c RO |
1271 | | vax \ |
1272 | | visium \ | |
b7b1f657 JM |
1273 | | w65 \ |
1274 | | wasm32 | wasm64 \ | |
5227609c RO |
1275 | | we32k \ |
1276 | | x86 | x86_64 | xc16x | xgate | xps100 \ | |
1277 | | xstormy16 | xtensa* \ | |
1278 | | ymp \ | |
1279 | | z8k | z80) | |
1280 | ;; | |
1281 | ||
1282 | *) | |
1283 | echo Invalid configuration \`"$1"\': machine \`"$cpu-$vendor"\' not recognized 1>&2 | |
1284 | exit 1 | |
1285 | ;; | |
1286 | esac | |
6599da04 JM |
1287 | ;; |
1288 | esac | |
1289 | ||
1290 | # Here we canonicalize certain aliases for manufacturers. | |
5227609c RO |
1291 | case $vendor in |
1292 | digital*) | |
1293 | vendor=dec | |
6599da04 | 1294 | ;; |
5227609c RO |
1295 | commodore*) |
1296 | vendor=cbm | |
6599da04 JM |
1297 | ;; |
1298 | *) | |
1299 | ;; | |
1300 | esac | |
1301 | ||
1302 | # Decode manufacturer-specific aliases for certain operating systems. | |
1303 | ||
53a90650 | 1304 | if test x$basic_os != x |
6599da04 | 1305 | then |
53a90650 | 1306 | |
80091f94 | 1307 | # First recognize some ad-hoc cases, or perhaps split kernel-os, or else just |
53a90650 IS |
1308 | # set os. |
1309 | case $basic_os in | |
1310 | gnu/linux*) | |
1311 | kernel=linux | |
80091f94 | 1312 | os=`echo "$basic_os" | sed -e 's|gnu/linux|gnu|'` |
53a90650 IS |
1313 | ;; |
1314 | os2-emx) | |
1315 | kernel=os2 | |
80091f94 | 1316 | os=`echo "$basic_os" | sed -e 's|os2-emx|emx|'` |
53a90650 IS |
1317 | ;; |
1318 | nto-qnx*) | |
1319 | kernel=nto | |
80091f94 | 1320 | os=`echo "$basic_os" | sed -e 's|nto-qnx|qnx|'` |
53a90650 IS |
1321 | ;; |
1322 | *-*) | |
1323 | # shellcheck disable=SC2162 | |
80091f94 | 1324 | saved_IFS=$IFS |
53a90650 IS |
1325 | IFS="-" read kernel os <<EOF |
1326 | $basic_os | |
1327 | EOF | |
80091f94 | 1328 | IFS=$saved_IFS |
53a90650 IS |
1329 | ;; |
1330 | # Default OS when just kernel was specified | |
1331 | nto*) | |
1332 | kernel=nto | |
80091f94 | 1333 | os=`echo "$basic_os" | sed -e 's|nto|qnx|'` |
53a90650 IS |
1334 | ;; |
1335 | linux*) | |
1336 | kernel=linux | |
80091f94 | 1337 | os=`echo "$basic_os" | sed -e 's|linux|gnu|'` |
53a90650 IS |
1338 | ;; |
1339 | *) | |
1340 | kernel= | |
1341 | os=$basic_os | |
1342 | ;; | |
1343 | esac | |
1344 | ||
1345 | # Now, normalize the OS (knowing we just have one component, it's not a kernel, | |
1346 | # etc.) | |
6599da04 | 1347 | case $os in |
ef7d7cf5 BE |
1348 | # First match some system type aliases that might get confused |
1349 | # with valid system types. | |
29305f60 BE |
1350 | # solaris* is a basic system type, with this one exception. |
1351 | auroraux) | |
1352 | os=auroraux | |
4960e3f0 | 1353 | ;; |
29305f60 BE |
1354 | bluegene*) |
1355 | os=cnk | |
6599da04 | 1356 | ;; |
29305f60 | 1357 | solaris1 | solaris1.*) |
80091f94 | 1358 | os=`echo "$os" | sed -e 's|solaris1|sunos4|'` |
6599da04 | 1359 | ;; |
29305f60 BE |
1360 | solaris) |
1361 | os=solaris2 | |
6599da04 | 1362 | ;; |
29305f60 BE |
1363 | unixware*) |
1364 | os=sysv4.2uw | |
85ee6037 | 1365 | ;; |
29305f60 BE |
1366 | # es1800 is here to avoid being matched by es* (a different OS) |
1367 | es1800*) | |
1368 | os=ose | |
1369 | ;; | |
1370 | # Some version numbers need modification | |
1371 | chorusos*) | |
1372 | os=chorusos | |
1373 | ;; | |
1374 | isc) | |
1375 | os=isc2.2 | |
1376 | ;; | |
1377 | sco6) | |
1378 | os=sco5v6 | |
1379 | ;; | |
1380 | sco5) | |
1381 | os=sco3.2v5 | |
1382 | ;; | |
1383 | sco4) | |
1384 | os=sco3.2v4 | |
1385 | ;; | |
1386 | sco3.2.[4-9]*) | |
80091f94 | 1387 | os=`echo "$os" | sed -e 's/sco3.2./sco3.2v/'` |
29305f60 | 1388 | ;; |
53a90650 | 1389 | sco*v* | scout) |
29305f60 BE |
1390 | # Don't match below |
1391 | ;; | |
1392 | sco*) | |
1393 | os=sco3.2v2 | |
1394 | ;; | |
1395 | psos*) | |
1396 | os=psos | |
1397 | ;; | |
29305f60 | 1398 | qnx*) |
53a90650 | 1399 | os=qnx |
ef0b4ef8 | 1400 | ;; |
29305f60 BE |
1401 | hiux*) |
1402 | os=hiuxwe2 | |
ab17919f | 1403 | ;; |
29305f60 BE |
1404 | lynx*178) |
1405 | os=lynxos178 | |
6599da04 | 1406 | ;; |
29305f60 BE |
1407 | lynx*5) |
1408 | os=lynxos5 | |
6599da04 | 1409 | ;; |
53a90650 IS |
1410 | lynxos*) |
1411 | # don't get caught up in next wildcard | |
1412 | ;; | |
29305f60 BE |
1413 | lynx*) |
1414 | os=lynxos | |
0b77644a | 1415 | ;; |
53a90650 | 1416 | mac[0-9]*) |
80091f94 | 1417 | os=`echo "$os" | sed -e 's|mac|macos|'` |
507ec745 | 1418 | ;; |
29305f60 BE |
1419 | opened*) |
1420 | os=openedition | |
521fe9d0 | 1421 | ;; |
29305f60 BE |
1422 | os400*) |
1423 | os=os400 | |
6599da04 | 1424 | ;; |
29305f60 | 1425 | sunos5*) |
80091f94 | 1426 | os=`echo "$os" | sed -e 's|sunos5|solaris2|'` |
6599da04 | 1427 | ;; |
29305f60 | 1428 | sunos6*) |
80091f94 | 1429 | os=`echo "$os" | sed -e 's|sunos6|solaris3|'` |
6599da04 | 1430 | ;; |
29305f60 BE |
1431 | wince*) |
1432 | os=wince | |
6599da04 | 1433 | ;; |
29305f60 BE |
1434 | utek*) |
1435 | os=bsd | |
6599da04 | 1436 | ;; |
29305f60 BE |
1437 | dynix*) |
1438 | os=bsd | |
251931f3 | 1439 | ;; |
29305f60 BE |
1440 | acis*) |
1441 | os=aos | |
a7ca14fc | 1442 | ;; |
29305f60 BE |
1443 | atheos*) |
1444 | os=atheos | |
6599da04 | 1445 | ;; |
29305f60 BE |
1446 | syllable*) |
1447 | os=syllable | |
6599da04 | 1448 | ;; |
29305f60 BE |
1449 | 386bsd) |
1450 | os=bsd | |
4434687a | 1451 | ;; |
29305f60 BE |
1452 | ctix* | uts*) |
1453 | os=sysv | |
6599da04 | 1454 | ;; |
29305f60 BE |
1455 | nova*) |
1456 | os=rtmk-nova | |
ef0b4ef8 | 1457 | ;; |
29305f60 BE |
1458 | ns2) |
1459 | os=nextstep2 | |
6599da04 | 1460 | ;; |
29305f60 BE |
1461 | # Preserve the version number of sinix5. |
1462 | sinix5.*) | |
80091f94 | 1463 | os=`echo "$os" | sed -e 's|sinix|sysv|'` |
6599da04 | 1464 | ;; |
29305f60 BE |
1465 | sinix*) |
1466 | os=sysv4 | |
6599da04 | 1467 | ;; |
29305f60 BE |
1468 | tpf*) |
1469 | os=tpf | |
6599da04 | 1470 | ;; |
29305f60 BE |
1471 | triton*) |
1472 | os=sysv3 | |
6599da04 | 1473 | ;; |
29305f60 BE |
1474 | oss*) |
1475 | os=sysv3 | |
6599da04 | 1476 | ;; |
29305f60 BE |
1477 | svr4*) |
1478 | os=sysv4 | |
6599da04 | 1479 | ;; |
29305f60 BE |
1480 | svr3) |
1481 | os=sysv3 | |
6599da04 | 1482 | ;; |
29305f60 BE |
1483 | sysvr4) |
1484 | os=sysv4 | |
6599da04 | 1485 | ;; |
29305f60 BE |
1486 | ose*) |
1487 | os=ose | |
b1345c72 | 1488 | ;; |
29305f60 BE |
1489 | *mint | mint[0-9]* | *MiNT | MiNT[0-9]*) |
1490 | os=mint | |
ccf9f10c | 1491 | ;; |
29305f60 BE |
1492 | dicos*) |
1493 | os=dicos | |
8479b1b1 | 1494 | ;; |
29305f60 | 1495 | pikeos*) |
ef7d7cf5 BE |
1496 | # Until real need of OS specific support for |
1497 | # particular features comes up, bare metal | |
1498 | # configurations are quite functional. | |
5227609c | 1499 | case $cpu in |
ef7d7cf5 | 1500 | arm*) |
29305f60 | 1501 | os=eabi |
ef7d7cf5 BE |
1502 | ;; |
1503 | *) | |
29305f60 | 1504 | os=elf |
ef7d7cf5 BE |
1505 | ;; |
1506 | esac | |
1507 | ;; | |
6599da04 | 1508 | *) |
53a90650 | 1509 | # No normalization, but not necessarily accepted, that comes below. |
6599da04 JM |
1510 | ;; |
1511 | esac | |
53a90650 | 1512 | |
6599da04 JM |
1513 | else |
1514 | ||
1515 | # Here we handle the default operating systems that come with various machines. | |
1516 | # The value should be what the vendor currently ships out the door with their | |
1517 | # machine or put another way, the most popular os provided with the machine. | |
1518 | ||
1519 | # Note that if you're going to try to match "-MANUFACTURER" here (say, | |
1520 | # "-sun"), then you have to tell the case statement up towards the top | |
1521 | # that MANUFACTURER isn't an operating system. Otherwise, code above | |
1522 | # will signal an error saying that MANUFACTURER isn't an operating | |
1523 | # system, and we'll never get to this point. | |
1524 | ||
53a90650 | 1525 | kernel= |
5227609c | 1526 | case $cpu-$vendor in |
41446fec | 1527 | score-*) |
29305f60 | 1528 | os=elf |
f6a1687e | 1529 | ;; |
41446fec | 1530 | spu-*) |
29305f60 | 1531 | os=elf |
8d1171cb | 1532 | ;; |
6599da04 | 1533 | *-acorn) |
29305f60 | 1534 | os=riscix1.2 |
6599da04 | 1535 | ;; |
eeda916a | 1536 | arm*-rebel) |
53a90650 IS |
1537 | kernel=linux |
1538 | os=gnu | |
3b7265ff | 1539 | ;; |
6599da04 | 1540 | arm*-semi) |
29305f60 | 1541 | os=aout |
6599da04 | 1542 | ;; |
41446fec | 1543 | c4x-* | tic4x-*) |
29305f60 | 1544 | os=coff |
8d1171cb | 1545 | ;; |
2a3e690a | 1546 | c8051-*) |
29305f60 BE |
1547 | os=elf |
1548 | ;; | |
1549 | clipper-intergraph) | |
1550 | os=clix | |
2a3e690a | 1551 | ;; |
f08bdd69 | 1552 | hexagon-*) |
29305f60 | 1553 | os=elf |
f08bdd69 | 1554 | ;; |
0d1152b1 | 1555 | tic54x-*) |
29305f60 | 1556 | os=coff |
0d1152b1 JM |
1557 | ;; |
1558 | tic55x-*) | |
29305f60 | 1559 | os=coff |
0d1152b1 JM |
1560 | ;; |
1561 | tic6x-*) | |
29305f60 | 1562 | os=coff |
0d1152b1 | 1563 | ;; |
3cd87679 | 1564 | # This must come before the *-dec entry. |
ae3ca0a9 | 1565 | pdp10-*) |
29305f60 | 1566 | os=tops20 |
ae3ca0a9 | 1567 | ;; |
ab17919f | 1568 | pdp11-*) |
29305f60 | 1569 | os=none |
6599da04 JM |
1570 | ;; |
1571 | *-dec | vax-*) | |
29305f60 | 1572 | os=ultrix4.2 |
6599da04 JM |
1573 | ;; |
1574 | m68*-apollo) | |
29305f60 | 1575 | os=domain |
6599da04 JM |
1576 | ;; |
1577 | i386-sun) | |
29305f60 | 1578 | os=sunos4.0.2 |
6599da04 JM |
1579 | ;; |
1580 | m68000-sun) | |
29305f60 | 1581 | os=sunos3 |
6599da04 | 1582 | ;; |
b1345c72 | 1583 | m68*-cisco) |
29305f60 | 1584 | os=aout |
6599da04 | 1585 | ;; |
41446fec | 1586 | mep-*) |
29305f60 | 1587 | os=elf |
a894d2c3 | 1588 | ;; |
b1345c72 | 1589 | mips*-cisco) |
29305f60 | 1590 | os=elf |
b1345c72 BE |
1591 | ;; |
1592 | mips*-*) | |
29305f60 | 1593 | os=elf |
6599da04 | 1594 | ;; |
40fe0ec3 | 1595 | or32-*) |
29305f60 | 1596 | os=coff |
40fe0ec3 | 1597 | ;; |
6599da04 | 1598 | *-tti) # must be before sparc entry or we get the wrong os. |
29305f60 | 1599 | os=sysv3 |
6599da04 JM |
1600 | ;; |
1601 | sparc-* | *-sun) | |
29305f60 | 1602 | os=sunos4.1.1 |
6599da04 | 1603 | ;; |
f2c764c5 | 1604 | pru-*) |
29305f60 | 1605 | os=elf |
f2c764c5 | 1606 | ;; |
85ee6037 | 1607 | *-be) |
29305f60 | 1608 | os=beos |
0063a823 | 1609 | ;; |
6599da04 | 1610 | *-ibm) |
29305f60 | 1611 | os=aix |
6599da04 | 1612 | ;; |
41446fec | 1613 | *-knuth) |
29305f60 | 1614 | os=mmixware |
fc4d0e82 | 1615 | ;; |
b1345c72 | 1616 | *-wec) |
29305f60 | 1617 | os=proelf |
6599da04 | 1618 | ;; |
b1345c72 | 1619 | *-winbond) |
29305f60 | 1620 | os=proelf |
6599da04 | 1621 | ;; |
b1345c72 | 1622 | *-oki) |
29305f60 | 1623 | os=proelf |
6599da04 JM |
1624 | ;; |
1625 | *-hp) | |
29305f60 | 1626 | os=hpux |
6599da04 JM |
1627 | ;; |
1628 | *-hitachi) | |
29305f60 | 1629 | os=hiux |
6599da04 JM |
1630 | ;; |
1631 | i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) | |
29305f60 | 1632 | os=sysv |
6599da04 JM |
1633 | ;; |
1634 | *-cbm) | |
29305f60 | 1635 | os=amigaos |
6599da04 JM |
1636 | ;; |
1637 | *-dg) | |
29305f60 | 1638 | os=dgux |
6599da04 JM |
1639 | ;; |
1640 | *-dolphin) | |
29305f60 | 1641 | os=sysv3 |
6599da04 JM |
1642 | ;; |
1643 | m68k-ccur) | |
29305f60 | 1644 | os=rtu |
6599da04 JM |
1645 | ;; |
1646 | m88k-omron*) | |
29305f60 | 1647 | os=luna |
6599da04 | 1648 | ;; |
ef7d7cf5 | 1649 | *-next) |
29305f60 | 1650 | os=nextstep |
6599da04 JM |
1651 | ;; |
1652 | *-sequent) | |
29305f60 | 1653 | os=ptx |
6599da04 JM |
1654 | ;; |
1655 | *-crds) | |
29305f60 | 1656 | os=unos |
6599da04 JM |
1657 | ;; |
1658 | *-ns) | |
29305f60 | 1659 | os=genix |
6599da04 JM |
1660 | ;; |
1661 | i370-*) | |
29305f60 | 1662 | os=mvs |
6599da04 | 1663 | ;; |
ab17919f | 1664 | *-gould) |
29305f60 | 1665 | os=sysv |
6599da04 | 1666 | ;; |
ab17919f | 1667 | *-highlevel) |
29305f60 | 1668 | os=bsd |
6599da04 JM |
1669 | ;; |
1670 | *-encore) | |
29305f60 | 1671 | os=bsd |
6599da04 | 1672 | ;; |
ab17919f | 1673 | *-sgi) |
29305f60 | 1674 | os=irix |
6599da04 | 1675 | ;; |
ab17919f | 1676 | *-siemens) |
29305f60 | 1677 | os=sysv4 |
6599da04 JM |
1678 | ;; |
1679 | *-masscomp) | |
29305f60 | 1680 | os=rtu |
6599da04 | 1681 | ;; |
ae3ca0a9 | 1682 | f30[01]-fujitsu | f700-fujitsu) |
29305f60 | 1683 | os=uxpv |
6599da04 | 1684 | ;; |
b1345c72 | 1685 | *-rom68k) |
29305f60 | 1686 | os=coff |
6599da04 | 1687 | ;; |
b1345c72 | 1688 | *-*bug) |
29305f60 | 1689 | os=coff |
6599da04 | 1690 | ;; |
b1345c72 | 1691 | *-apple) |
29305f60 | 1692 | os=macos |
6599da04 | 1693 | ;; |
b1345c72 | 1694 | *-atari*) |
29305f60 BE |
1695 | os=mint |
1696 | ;; | |
1697 | *-wrs) | |
1698 | os=vxworks | |
b1345c72 | 1699 | ;; |
6599da04 | 1700 | *) |
29305f60 | 1701 | os=none |
6599da04 JM |
1702 | ;; |
1703 | esac | |
53a90650 | 1704 | |
6599da04 JM |
1705 | fi |
1706 | ||
53a90650 IS |
1707 | # Now, validate our (potentially fixed-up) OS. |
1708 | case $os in | |
74af13c1 | 1709 | # Sometimes we do "kernel-libc", so those need to count as OSes. |
80091f94 | 1710 | musl* | newlib* | relibc* | uclibc*) |
53a90650 | 1711 | ;; |
74af13c1 KC |
1712 | # Likewise for "kernel-abi" |
1713 | eabi* | gnueabi*) | |
1714 | ;; | |
1715 | # VxWorks passes extra cpu info in the 4th filed. | |
1716 | simlinux | simwindows | spe) | |
53a90650 IS |
1717 | ;; |
1718 | # Now accept the basic system types. | |
1719 | # The portable systems comes first. | |
1720 | # Each alternative MUST end in a * to match a version number. | |
1721 | gnu* | android* | bsd* | mach* | minix* | genix* | ultrix* | irix* \ | |
1722 | | *vms* | esix* | aix* | cnk* | sunos | sunos[34]* \ | |
1723 | | hpux* | unos* | osf* | luna* | dgux* | auroraux* | solaris* \ | |
1724 | | sym* | plan9* | psp* | sim* | xray* | os68k* | v88r* \ | |
1725 | | hiux* | abug | nacl* | netware* | windows* \ | |
1726 | | os9* | macos* | osx* | ios* \ | |
1727 | | mpw* | magic* | mmixware* | mon960* | lnews* \ | |
1728 | | amigaos* | amigados* | msdos* | newsos* | unicos* | aof* \ | |
1729 | | aos* | aros* | cloudabi* | sortix* | twizzler* \ | |
1730 | | nindy* | vxsim* | vxworks* | ebmon* | hms* | mvs* \ | |
1731 | | clix* | riscos* | uniplus* | iris* | isc* | rtu* | xenix* \ | |
1732 | | mirbsd* | netbsd* | dicos* | openedition* | ose* \ | |
80091f94 | 1733 | | bitrig* | openbsd* | secbsd* | solidbsd* | libertybsd* | os108* \ |
53a90650 IS |
1734 | | ekkobsd* | freebsd* | riscix* | lynxos* | os400* \ |
1735 | | bosx* | nextstep* | cxux* | aout* | elf* | oabi* \ | |
1736 | | ptx* | coff* | ecoff* | winnt* | domain* | vsta* \ | |
1737 | | udi* | lites* | ieee* | go32* | aux* | hcos* \ | |
80091f94 | 1738 | | chorusrdb* | cegcc* | glidix* | serenity* \ |
53a90650 IS |
1739 | | cygwin* | msys* | pe* | moss* | proelf* | rtems* \ |
1740 | | midipix* | mingw32* | mingw64* | mint* \ | |
1741 | | uxpv* | beos* | mpeix* | udk* | moxiebox* \ | |
1742 | | interix* | uwin* | mks* | rhapsody* | darwin* \ | |
1743 | | openstep* | oskit* | conix* | pw32* | nonstopux* \ | |
1744 | | storm-chaos* | tops10* | tenex* | tops20* | its* \ | |
1745 | | os2* | vos* | palmos* | uclinux* | nucleus* | morphos* \ | |
1746 | | scout* | superux* | sysv* | rtmk* | tpf* | windiss* \ | |
1747 | | powermax* | dnix* | nx6 | nx7 | sei* | dragonfly* \ | |
1748 | | skyos* | haiku* | rdos* | toppers* | drops* | es* \ | |
1749 | | onefs* | tirtos* | phoenix* | fuchsia* | redox* | bme* \ | |
1750 | | midnightbsd* | amdhsa* | unleashed* | emscripten* | wasi* \ | |
80091f94 ML |
1751 | | nsk* | powerunix* | genode* | zvmoe* | qnx* | emx* | zephyr* \ |
1752 | | fiwix* ) | |
53a90650 IS |
1753 | ;; |
1754 | # This one is extra strict with allowed versions | |
1755 | sco3.2v2 | sco3.2v[4-9]* | sco5v6*) | |
1756 | # Don't forget version if it is 3.2v4 or newer. | |
1757 | ;; | |
1758 | none) | |
1759 | ;; | |
1760 | *) | |
1761 | echo Invalid configuration \`"$1"\': OS \`"$os"\' not recognized 1>&2 | |
1762 | exit 1 | |
1763 | ;; | |
1764 | esac | |
1765 | ||
1766 | # As a final step for OS-related things, validate the OS-kernel combination | |
1767 | # (given a valid OS), if there is a kernel. | |
1768 | case $kernel-$os in | |
80091f94 ML |
1769 | linux-gnu* | linux-dietlibc* | linux-android* | linux-newlib* \ |
1770 | | linux-musl* | linux-relibc* | linux-uclibc* ) | |
53a90650 IS |
1771 | ;; |
1772 | uclinux-uclibc* ) | |
1773 | ;; | |
80091f94 | 1774 | -dietlibc* | -newlib* | -musl* | -relibc* | -uclibc* ) |
53a90650 IS |
1775 | # These are just libc implementations, not actual OSes, and thus |
1776 | # require a kernel. | |
1777 | echo "Invalid configuration \`$1': libc \`$os' needs explicit kernel." 1>&2 | |
1778 | exit 1 | |
1779 | ;; | |
1780 | kfreebsd*-gnu* | kopensolaris*-gnu*) | |
1781 | ;; | |
74af13c1 KC |
1782 | vxworks-simlinux | vxworks-simwindows | vxworks-spe) |
1783 | ;; | |
53a90650 IS |
1784 | nto-qnx*) |
1785 | ;; | |
1786 | os2-emx) | |
1787 | ;; | |
1788 | *-eabi* | *-gnueabi*) | |
1789 | ;; | |
1790 | -*) | |
1791 | # Blank kernel with real OS is always fine. | |
1792 | ;; | |
1793 | *-*) | |
1794 | echo "Invalid configuration \`$1': Kernel \`$kernel' not known to work with OS \`$os'." 1>&2 | |
1795 | exit 1 | |
1796 | ;; | |
1797 | esac | |
1798 | ||
6599da04 JM |
1799 | # Here we handle the case where we know the os, and the CPU type, but not the |
1800 | # manufacturer. We pick the logical manufacturer. | |
5227609c RO |
1801 | case $vendor in |
1802 | unknown) | |
53a90650 IS |
1803 | case $cpu-$os in |
1804 | *-riscix*) | |
6599da04 JM |
1805 | vendor=acorn |
1806 | ;; | |
53a90650 | 1807 | *-sunos*) |
6599da04 JM |
1808 | vendor=sun |
1809 | ;; | |
53a90650 | 1810 | *-cnk* | *-aix*) |
6599da04 JM |
1811 | vendor=ibm |
1812 | ;; | |
53a90650 | 1813 | *-beos*) |
6599da04 JM |
1814 | vendor=be |
1815 | ;; | |
53a90650 | 1816 | *-hpux*) |
85ee6037 ILT |
1817 | vendor=hp |
1818 | ;; | |
53a90650 | 1819 | *-mpeix*) |
85ee6037 ILT |
1820 | vendor=hp |
1821 | ;; | |
53a90650 | 1822 | *-hiux*) |
6599da04 JM |
1823 | vendor=hitachi |
1824 | ;; | |
53a90650 | 1825 | *-unos*) |
6599da04 JM |
1826 | vendor=crds |
1827 | ;; | |
53a90650 | 1828 | *-dgux*) |
6599da04 JM |
1829 | vendor=dg |
1830 | ;; | |
53a90650 | 1831 | *-luna*) |
6599da04 JM |
1832 | vendor=omron |
1833 | ;; | |
53a90650 | 1834 | *-genix*) |
6599da04 JM |
1835 | vendor=ns |
1836 | ;; | |
53a90650 | 1837 | *-clix*) |
29305f60 BE |
1838 | vendor=intergraph |
1839 | ;; | |
53a90650 IS |
1840 | *-mvs* | *-opened*) |
1841 | vendor=ibm | |
1842 | ;; | |
1843 | *-os400*) | |
6599da04 JM |
1844 | vendor=ibm |
1845 | ;; | |
53a90650 | 1846 | s390-* | s390x-*) |
507ec745 BI |
1847 | vendor=ibm |
1848 | ;; | |
53a90650 | 1849 | *-ptx*) |
6599da04 JM |
1850 | vendor=sequent |
1851 | ;; | |
53a90650 | 1852 | *-tpf*) |
20af77cd UW |
1853 | vendor=ibm |
1854 | ;; | |
53a90650 | 1855 | *-vxsim* | *-vxworks* | *-windiss*) |
6599da04 JM |
1856 | vendor=wrs |
1857 | ;; | |
53a90650 | 1858 | *-aux*) |
6599da04 JM |
1859 | vendor=apple |
1860 | ;; | |
53a90650 | 1861 | *-hms*) |
6599da04 JM |
1862 | vendor=hitachi |
1863 | ;; | |
53a90650 | 1864 | *-mpw* | *-macos*) |
6599da04 JM |
1865 | vendor=apple |
1866 | ;; | |
53a90650 | 1867 | *-*mint | *-mint[0-9]* | *-*MiNT | *-MiNT[0-9]*) |
b1345c72 BE |
1868 | vendor=atari |
1869 | ;; | |
53a90650 | 1870 | *-vos*) |
f6084f99 ZW |
1871 | vendor=stratus |
1872 | ;; | |
6599da04 | 1873 | esac |
6599da04 JM |
1874 | ;; |
1875 | esac | |
1876 | ||
53a90650 | 1877 | echo "$cpu-$vendor-${kernel:+$kernel-}$os" |
0063a823 | 1878 | exit |
ef0b4ef8 PT |
1879 | |
1880 | # Local variables: | |
29305f60 | 1881 | # eval: (add-hook 'before-save-hook 'time-stamp) |
ae3ca0a9 | 1882 | # time-stamp-start: "timestamp='" |
ef0b4ef8 PT |
1883 | # time-stamp-format: "%:y-%02m-%02d" |
1884 | # time-stamp-end: "'" | |
1885 | # End: |