Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(602)

Side by Side Diff: build-aux/config.sub

Issue 2847081: Initial code. (Closed) Base URL: ssh://git@chromiumos-git/libscrypt.git
Patch Set: Use scrypt distro and patch with changes instead. Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build-aux/config.guess ('k') | build-aux/depcomp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #! /bin/sh
2 # Configuration validation subroutine script.
3 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
5 # Free Software Foundation, Inc.
6
7 timestamp='2009-08-19'
8
9 # This file is (in principle) common to ALL GNU software.
10 # The presence of a machine in this file suggests that SOME GNU software
11 # can handle that machine. It does not imply ALL GNU software can.
12 #
13 # This file is free software; you can redistribute it and/or modify
14 # it under the terms of the GNU General Public License as published by
15 # the Free Software Foundation; either version 2 of the License, or
16 # (at your option) any later version.
17 #
18 # This program is distributed in the hope that it will be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 # GNU General Public License for more details.
22 #
23 # You should have received a copy of the GNU General Public License
24 # along with this program; if not, write to the Free Software
25 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
26 # 02110-1301, USA.
27 #
28 # As a special exception to the GNU General Public License, if you
29 # distribute this file as part of a program that contains a
30 # configuration script generated by Autoconf, you may include it under
31 # the same distribution terms that you use for the rest of that program.
32
33
34 # Please send patches to <config-patches@gnu.org>. Submit a context
35 # diff and a properly formatted GNU ChangeLog entry.
36 #
37 # Configuration subroutine to validate and canonicalize a configuration type.
38 # Supply the specified configuration type as an argument.
39 # If it is invalid, we print an error message on stderr and exit with code 1.
40 # Otherwise, we print the canonical config type on stdout and succeed.
41
42 # You can get the latest version of this script from:
43 # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb= HEAD
44
45 # This file is supposed to be the same for all GNU packages
46 # and recognize all the CPU types, system types and aliases
47 # that are meaningful with *any* GNU software.
48 # Each package is responsible for reporting which valid configurations
49 # it does not support. The user should be able to distinguish
50 # a failure to support a valid configuration from a meaningless
51 # configuration.
52
53 # The goal of this file is to map all the various variations of a given
54 # machine specification into a single specification in the form:
55 # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
56 # or in some cases, the newer four-part form:
57 # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
58 # It is wrong to echo any other type of specification.
59
60 me=`echo "$0" | sed -e 's,.*/,,'`
61
62 usage="\
63 Usage: $0 [OPTION] CPU-MFR-OPSYS
64 $0 [OPTION] ALIAS
65
66 Canonicalize a configuration name.
67
68 Operation modes:
69 -h, --help print this help, then exit
70 -t, --time-stamp print date of last modification, then exit
71 -v, --version print version number, then exit
72
73 Report bugs and patches to <config-patches@gnu.org>."
74
75 version="\
76 GNU config.sub ($timestamp)
77
78 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
79 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
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."
83
84 help="
85 Try \`$me --help' for more information."
86
87 # Parse command line
88 while test $# -gt 0 ; do
89 case $1 in
90 --time-stamp | --time* | -t )
91 echo "$timestamp" ; exit ;;
92 --version | -v )
93 echo "$version" ; exit ;;
94 --help | --h* | -h )
95 echo "$usage"; exit ;;
96 -- ) # Stop option processing
97 shift; break ;;
98 - ) # Use stdin as input.
99 break ;;
100 -* )
101 echo "$me: invalid option $1$help"
102 exit 1 ;;
103
104 *local*)
105 # First pass through any local machine types.
106 echo $1
107 exit ;;
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;;
120 esac
121
122 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
123 # Here we must recognize all the valid KERNEL-OS combinations.
124 maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
125 case $maybe_os in
126 nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \
127 uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \
128 kopensolaris*-gnu* | \
129 storm-chaos* | os2-emx* | rtmk-nova*)
130 os=-$maybe_os
131 basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
132 ;;
133 *)
134 basic_machine=`echo $1 | sed 's/-[^-]*$//'`
135 if [ $basic_machine != $1 ]
136 then os=`echo $1 | sed 's/.*-/-/'`
137 else os=; fi
138 ;;
139 esac
140
141 ### Let's recognize common machines as not being operating systems so
142 ### that things like config.sub decstation-3100 work. We also
143 ### recognize some manufacturers as not being operating systems, so we
144 ### can provide default operating systems below.
145 case $os in
146 -sun*os*)
147 # Prevent following clause from handling this invalid input.
148 ;;
149 -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \
150 -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \
151 -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \
152 -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
153 -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
154 -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
155 -apple | -axis | -knuth | -cray | -microblaze)
156 os=
157 basic_machine=$1
158 ;;
159 -bluegene*)
160 os=-cnk
161 ;;
162 -sim | -cisco | -oki | -wec | -winbond)
163 os=
164 basic_machine=$1
165 ;;
166 -scout)
167 ;;
168 -wrs)
169 os=-vxworks
170 basic_machine=$1
171 ;;
172 -chorusos*)
173 os=-chorusos
174 basic_machine=$1
175 ;;
176 -chorusrdb)
177 os=-chorusrdb
178 basic_machine=$1
179 ;;
180 -hiux*)
181 os=-hiuxwe2
182 ;;
183 -sco6)
184 os=-sco5v6
185 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
186 ;;
187 -sco5)
188 os=-sco3.2v5
189 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
190 ;;
191 -sco4)
192 os=-sco3.2v4
193 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
194 ;;
195 -sco3.2.[4-9]*)
196 os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
197 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
198 ;;
199 -sco3.2v[4-9]*)
200 # Don't forget version if it is 3.2v4 or newer.
201 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
202 ;;
203 -sco5v6*)
204 # Don't forget version if it is 3.2v4 or newer.
205 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
206 ;;
207 -sco*)
208 os=-sco3.2v2
209 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
210 ;;
211 -udk*)
212 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
213 ;;
214 -isc)
215 os=-isc2.2
216 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
217 ;;
218 -clix*)
219 basic_machine=clipper-intergraph
220 ;;
221 -isc*)
222 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
223 ;;
224 -lynx*)
225 os=-lynxos
226 ;;
227 -ptx*)
228 basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`
229 ;;
230 -windowsnt*)
231 os=`echo $os | sed -e 's/windowsnt/winnt/'`
232 ;;
233 -psos*)
234 os=-psos
235 ;;
236 -mint | -mint[0-9]*)
237 basic_machine=m68k-atari
238 os=-mint
239 ;;
240 esac
241
242 # Decode aliases for certain CPU-COMPANY combinations.
243 case $basic_machine in
244 # Recognize the basic CPU types without company name.
245 # Some are omitted here because they have special meanings below.
246 1750a | 580 \
247 | a29k \
248 | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
249 | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[ 67] \
250 | am33_2.0 \
251 | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | a vr32 \
252 | bfin \
253 | c4x | clipper \
254 | d10v | d30v | dlx | dsp16xx | dvp \
255 | fido | fr30 | frv \
256 | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
257 | i370 | i860 | i960 | ia64 \
258 | ip2k | iq2000 \
259 | lm32 \
260 | m32c | m32r | m32rle | m68000 | m68k | m88k \
261 | maxq | mb | microblaze | mcore | mep | metag \
262 | mips | mipsbe | mipseb | mipsel | mipsle \
263 | mips16 \
264 | mips64 | mips64el \
265 | mips64octeon | mips64octeonel \
266 | mips64orion | mips64orionel \
267 | mips64r5900 | mips64r5900el \
268 | mips64vr | mips64vrel \
269 | mips64vr4100 | mips64vr4100el \
270 | mips64vr4300 | mips64vr4300el \
271 | mips64vr5000 | mips64vr5000el \
272 | mips64vr5900 | mips64vr5900el \
273 | mipsisa32 | mipsisa32el \
274 | mipsisa32r2 | mipsisa32r2el \
275 | mipsisa64 | mipsisa64el \
276 | mipsisa64r2 | mipsisa64r2el \
277 | mipsisa64sb1 | mipsisa64sb1el \
278 | mipsisa64sr71k | mipsisa64sr71kel \
279 | mipstx39 | mipstx39el \
280 | mn10200 | mn10300 \
281 | moxie \
282 | mt \
283 | msp430 \
284 | nios | nios2 \
285 | ns16k | ns32k \
286 | or32 \
287 | pdp10 | pdp11 | pj | pjl \
288 | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \
289 | pyramid \
290 | score \
291 | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
292 | sh64 | sh64le \
293 | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclit e \
294 | sparcv8 | sparcv9 | sparcv9b | sparcv9v \
295 | spu | strongarm \
296 | tahoe | thumb | tic4x | tic80 | tron \
297 | v850 | v850e \
298 | we32k \
299 | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \
300 | z8k | z80)
301 basic_machine=$basic_machine-unknown
302 ;;
303 m6811 | m68hc11 | m6812 | m68hc12)
304 # Motorola 68HC11/12.
305 basic_machine=$basic_machine-unknown
306 os=-none
307 ;;
308 m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k)
309 ;;
310 ms1)
311 basic_machine=mt-unknown
312 ;;
313
314 # We use `pc' rather than `unknown'
315 # because (1) that's what they normally are, and
316 # (2) the word "unknown" tends to confuse beginning users.
317 i*86 | x86_64)
318 basic_machine=$basic_machine-pc
319 ;;
320 # Object if more than one company name word.
321 *-*-*)
322 echo Invalid configuration \`$1\': machine \`$basic_machine\' no t recognized 1>&2
323 exit 1
324 ;;
325 # Recognize the basic CPU types with company name.
326 580-* \
327 | a29k-* \
328 | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \
329 | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
330 | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \
331 | arm-* | armbe-* | armle-* | armeb-* | armv*-* \
332 | avr-* | avr32-* \
333 | bfin-* | bs2000-* \
334 | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \
335 | clipper-* | craynv-* | cydra-* \
336 | d10v-* | d30v-* | dlx-* \
337 | elxsi-* \
338 | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \
339 | h8300-* | h8500-* \
340 | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
341 | i*86-* | i860-* | i960-* | ia64-* \
342 | ip2k-* | iq2000-* \
343 | lm32-* \
344 | m32c-* | m32r-* | m32rle-* \
345 | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
346 | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \
347 | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \
348 | mips16-* \
349 | mips64-* | mips64el-* \
350 | mips64octeon-* | mips64octeonel-* \
351 | mips64orion-* | mips64orionel-* \
352 | mips64r5900-* | mips64r5900el-* \
353 | mips64vr-* | mips64vrel-* \
354 | mips64vr4100-* | mips64vr4100el-* \
355 | mips64vr4300-* | mips64vr4300el-* \
356 | mips64vr5000-* | mips64vr5000el-* \
357 | mips64vr5900-* | mips64vr5900el-* \
358 | mipsisa32-* | mipsisa32el-* \
359 | mipsisa32r2-* | mipsisa32r2el-* \
360 | mipsisa64-* | mipsisa64el-* \
361 | mipsisa64r2-* | mipsisa64r2el-* \
362 | mipsisa64sb1-* | mipsisa64sb1el-* \
363 | mipsisa64sr71k-* | mipsisa64sr71kel-* \
364 | mipstx39-* | mipstx39el-* \
365 | mmix-* \
366 | mt-* \
367 | msp430-* \
368 | nios-* | nios2-* \
369 | none-* | np1-* | ns16k-* | ns32k-* \
370 | orion-* \
371 | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
372 | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \
373 | pyramid-* \
374 | romp-* | rs6000-* \
375 | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \
376 | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
377 | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet- * \
378 | sparclite-* \
379 | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \
380 | tahoe-* | thumb-* \
381 | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* | tile-* \
382 | tron-* \
383 | v850-* | v850e-* | vax-* \
384 | we32k-* \
385 | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \
386 | xstormy16-* | xtensa*-* \
387 | ymp-* \
388 | z8k-* | z80-*)
389 ;;
390 # Recognize the basic CPU types without company name, with glob match.
391 xtensa*)
392 basic_machine=$basic_machine-unknown
393 ;;
394 # Recognize the various machine names and aliases which stand
395 # for a CPU type and a company and sometimes even an OS.
396 386bsd)
397 basic_machine=i386-unknown
398 os=-bsd
399 ;;
400 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
401 basic_machine=m68000-att
402 ;;
403 3b*)
404 basic_machine=we32k-att
405 ;;
406 a29khif)
407 basic_machine=a29k-amd
408 os=-udi
409 ;;
410 abacus)
411 basic_machine=abacus-unknown
412 ;;
413 adobe68k)
414 basic_machine=m68010-adobe
415 os=-scout
416 ;;
417 alliant | fx80)
418 basic_machine=fx80-alliant
419 ;;
420 altos | altos3068)
421 basic_machine=m68k-altos
422 ;;
423 am29k)
424 basic_machine=a29k-none
425 os=-bsd
426 ;;
427 amd64)
428 basic_machine=x86_64-pc
429 ;;
430 amd64-*)
431 basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'`
432 ;;
433 amdahl)
434 basic_machine=580-amdahl
435 os=-sysv
436 ;;
437 amiga | amiga-*)
438 basic_machine=m68k-unknown
439 ;;
440 amigaos | amigados)
441 basic_machine=m68k-unknown
442 os=-amigaos
443 ;;
444 amigaunix | amix)
445 basic_machine=m68k-unknown
446 os=-sysv4
447 ;;
448 apollo68)
449 basic_machine=m68k-apollo
450 os=-sysv
451 ;;
452 apollo68bsd)
453 basic_machine=m68k-apollo
454 os=-bsd
455 ;;
456 aros)
457 basic_machine=i386-pc
458 os=-aros
459 ;;
460 aux)
461 basic_machine=m68k-apple
462 os=-aux
463 ;;
464 balance)
465 basic_machine=ns32k-sequent
466 os=-dynix
467 ;;
468 blackfin)
469 basic_machine=bfin-unknown
470 os=-linux
471 ;;
472 blackfin-*)
473 basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'`
474 os=-linux
475 ;;
476 bluegene*)
477 basic_machine=powerpc-ibm
478 os=-cnk
479 ;;
480 c90)
481 basic_machine=c90-cray
482 os=-unicos
483 ;;
484 cegcc)
485 basic_machine=arm-unknown
486 os=-cegcc
487 ;;
488 convex-c1)
489 basic_machine=c1-convex
490 os=-bsd
491 ;;
492 convex-c2)
493 basic_machine=c2-convex
494 os=-bsd
495 ;;
496 convex-c32)
497 basic_machine=c32-convex
498 os=-bsd
499 ;;
500 convex-c34)
501 basic_machine=c34-convex
502 os=-bsd
503 ;;
504 convex-c38)
505 basic_machine=c38-convex
506 os=-bsd
507 ;;
508 cray | j90)
509 basic_machine=j90-cray
510 os=-unicos
511 ;;
512 craynv)
513 basic_machine=craynv-cray
514 os=-unicosmp
515 ;;
516 cr16)
517 basic_machine=cr16-unknown
518 os=-elf
519 ;;
520 crds | unos)
521 basic_machine=m68k-crds
522 ;;
523 crisv32 | crisv32-* | etraxfs*)
524 basic_machine=crisv32-axis
525 ;;
526 cris | cris-* | etrax*)
527 basic_machine=cris-axis
528 ;;
529 crx)
530 basic_machine=crx-unknown
531 os=-elf
532 ;;
533 da30 | da30-*)
534 basic_machine=m68k-da30
535 ;;
536 decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn )
537 basic_machine=mips-dec
538 ;;
539 decsystem10* | dec10*)
540 basic_machine=pdp10-dec
541 os=-tops10
542 ;;
543 decsystem20* | dec20*)
544 basic_machine=pdp10-dec
545 os=-tops20
546 ;;
547 delta | 3300 | motorola-3300 | motorola-delta \
548 | 3300-motorola | delta-motorola)
549 basic_machine=m68k-motorola
550 ;;
551 delta88)
552 basic_machine=m88k-motorola
553 os=-sysv3
554 ;;
555 dicos)
556 basic_machine=i686-pc
557 os=-dicos
558 ;;
559 djgpp)
560 basic_machine=i586-pc
561 os=-msdosdjgpp
562 ;;
563 dpx20 | dpx20-*)
564 basic_machine=rs6000-bull
565 os=-bosx
566 ;;
567 dpx2* | dpx2*-bull)
568 basic_machine=m68k-bull
569 os=-sysv3
570 ;;
571 ebmon29k)
572 basic_machine=a29k-amd
573 os=-ebmon
574 ;;
575 elxsi)
576 basic_machine=elxsi-elxsi
577 os=-bsd
578 ;;
579 encore | umax | mmax)
580 basic_machine=ns32k-encore
581 ;;
582 es1800 | OSE68k | ose68k | ose | OSE)
583 basic_machine=m68k-ericsson
584 os=-ose
585 ;;
586 fx2800)
587 basic_machine=i860-alliant
588 ;;
589 genix)
590 basic_machine=ns32k-ns
591 ;;
592 gmicro)
593 basic_machine=tron-gmicro
594 os=-sysv
595 ;;
596 go32)
597 basic_machine=i386-pc
598 os=-go32
599 ;;
600 h3050r* | hiux*)
601 basic_machine=hppa1.1-hitachi
602 os=-hiuxwe2
603 ;;
604 h8300hms)
605 basic_machine=h8300-hitachi
606 os=-hms
607 ;;
608 h8300xray)
609 basic_machine=h8300-hitachi
610 os=-xray
611 ;;
612 h8500hms)
613 basic_machine=h8500-hitachi
614 os=-hms
615 ;;
616 harris)
617 basic_machine=m88k-harris
618 os=-sysv3
619 ;;
620 hp300-*)
621 basic_machine=m68k-hp
622 ;;
623 hp300bsd)
624 basic_machine=m68k-hp
625 os=-bsd
626 ;;
627 hp300hpux)
628 basic_machine=m68k-hp
629 os=-hpux
630 ;;
631 hp3k9[0-9][0-9] | hp9[0-9][0-9])
632 basic_machine=hppa1.0-hp
633 ;;
634 hp9k2[0-9][0-9] | hp9k31[0-9])
635 basic_machine=m68000-hp
636 ;;
637 hp9k3[2-9][0-9])
638 basic_machine=m68k-hp
639 ;;
640 hp9k6[0-9][0-9] | hp6[0-9][0-9])
641 basic_machine=hppa1.0-hp
642 ;;
643 hp9k7[0-79][0-9] | hp7[0-79][0-9])
644 basic_machine=hppa1.1-hp
645 ;;
646 hp9k78[0-9] | hp78[0-9])
647 # FIXME: really hppa2.0-hp
648 basic_machine=hppa1.1-hp
649 ;;
650 hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893)
651 # FIXME: really hppa2.0-hp
652 basic_machine=hppa1.1-hp
653 ;;
654 hp9k8[0-9][13679] | hp8[0-9][13679])
655 basic_machine=hppa1.1-hp
656 ;;
657 hp9k8[0-9][0-9] | hp8[0-9][0-9])
658 basic_machine=hppa1.0-hp
659 ;;
660 hppa-next)
661 os=-nextstep3
662 ;;
663 hppaosf)
664 basic_machine=hppa1.1-hp
665 os=-osf
666 ;;
667 hppro)
668 basic_machine=hppa1.1-hp
669 os=-proelf
670 ;;
671 i370-ibm* | ibm*)
672 basic_machine=i370-ibm
673 ;;
674 # I'm not sure what "Sysv32" means. Should this be sysv3.2?
675 i*86v32)
676 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
677 os=-sysv32
678 ;;
679 i*86v4*)
680 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
681 os=-sysv4
682 ;;
683 i*86v)
684 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
685 os=-sysv
686 ;;
687 i*86sol2)
688 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
689 os=-solaris2
690 ;;
691 i386mach)
692 basic_machine=i386-mach
693 os=-mach
694 ;;
695 i386-vsta | vsta)
696 basic_machine=i386-unknown
697 os=-vsta
698 ;;
699 iris | iris4d)
700 basic_machine=mips-sgi
701 case $os in
702 -irix*)
703 ;;
704 *)
705 os=-irix4
706 ;;
707 esac
708 ;;
709 isi68 | isi)
710 basic_machine=m68k-isi
711 os=-sysv
712 ;;
713 m68knommu)
714 basic_machine=m68k-unknown
715 os=-linux
716 ;;
717 m68knommu-*)
718 basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'`
719 os=-linux
720 ;;
721 m88k-omron*)
722 basic_machine=m88k-omron
723 ;;
724 magnum | m3230)
725 basic_machine=mips-mips
726 os=-sysv
727 ;;
728 merlin)
729 basic_machine=ns32k-utek
730 os=-sysv
731 ;;
732 microblaze)
733 basic_machine=microblaze-xilinx
734 ;;
735 mingw32)
736 basic_machine=i386-pc
737 os=-mingw32
738 ;;
739 mingw32ce)
740 basic_machine=arm-unknown
741 os=-mingw32ce
742 ;;
743 miniframe)
744 basic_machine=m68000-convergent
745 ;;
746 *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*)
747 basic_machine=m68k-atari
748 os=-mint
749 ;;
750 mipsEE* | ee | ps2)
751 basic_machine=mips64r5900el-scei
752 case $os in
753 -linux*)
754 ;;
755 *)
756 os=-elf
757 ;;
758 esac
759 ;;
760 iop)
761 basic_machine=mipsel-scei
762 os=-irx
763 ;;
764 dvp)
765 basic_machine=dvp-scei
766 os=-elf
767 ;;
768 mips3*-*)
769 basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
770 ;;
771 mips3*)
772 basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-u nknown
773 ;;
774 monitor)
775 basic_machine=m68k-rom68k
776 os=-coff
777 ;;
778 morphos)
779 basic_machine=powerpc-unknown
780 os=-morphos
781 ;;
782 msdos)
783 basic_machine=i386-pc
784 os=-msdos
785 ;;
786 ms1-*)
787 basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
788 ;;
789 mvs)
790 basic_machine=i370-ibm
791 os=-mvs
792 ;;
793 ncr3000)
794 basic_machine=i486-ncr
795 os=-sysv4
796 ;;
797 netbsd386)
798 basic_machine=i386-unknown
799 os=-netbsd
800 ;;
801 netwinder)
802 basic_machine=armv4l-rebel
803 os=-linux
804 ;;
805 news | news700 | news800 | news900)
806 basic_machine=m68k-sony
807 os=-newsos
808 ;;
809 news1000)
810 basic_machine=m68030-sony
811 os=-newsos
812 ;;
813 news-3600 | risc-news)
814 basic_machine=mips-sony
815 os=-newsos
816 ;;
817 necv70)
818 basic_machine=v70-nec
819 os=-sysv
820 ;;
821 next | m*-next )
822 basic_machine=m68k-next
823 case $os in
824 -nextstep* )
825 ;;
826 -ns2*)
827 os=-nextstep2
828 ;;
829 *)
830 os=-nextstep3
831 ;;
832 esac
833 ;;
834 nh3000)
835 basic_machine=m68k-harris
836 os=-cxux
837 ;;
838 nh[45]000)
839 basic_machine=m88k-harris
840 os=-cxux
841 ;;
842 nindy960)
843 basic_machine=i960-intel
844 os=-nindy
845 ;;
846 mon960)
847 basic_machine=i960-intel
848 os=-mon960
849 ;;
850 nonstopux)
851 basic_machine=mips-compaq
852 os=-nonstopux
853 ;;
854 np1)
855 basic_machine=np1-gould
856 ;;
857 nsr-tandem)
858 basic_machine=nsr-tandem
859 ;;
860 op50n-* | op60c-*)
861 basic_machine=hppa1.1-oki
862 os=-proelf
863 ;;
864 openrisc | openrisc-*)
865 basic_machine=or32-unknown
866 ;;
867 os400)
868 basic_machine=powerpc-ibm
869 os=-os400
870 ;;
871 OSE68000 | ose68000)
872 basic_machine=m68000-ericsson
873 os=-ose
874 ;;
875 os68k)
876 basic_machine=m68k-none
877 os=-os68k
878 ;;
879 pa-hitachi)
880 basic_machine=hppa1.1-hitachi
881 os=-hiuxwe2
882 ;;
883 paragon)
884 basic_machine=i860-intel
885 os=-osf
886 ;;
887 parisc)
888 basic_machine=hppa-unknown
889 os=-linux
890 ;;
891 parisc-*)
892 basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'`
893 os=-linux
894 ;;
895 pbd)
896 basic_machine=sparc-tti
897 ;;
898 pbb)
899 basic_machine=m68k-tti
900 ;;
901 pc532 | pc532-*)
902 basic_machine=ns32k-pc532
903 ;;
904 pc98)
905 basic_machine=i386-pc
906 ;;
907 pc98-*)
908 basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'`
909 ;;
910 pentium | p5 | k5 | k6 | nexgen | viac3)
911 basic_machine=i586-pc
912 ;;
913 pentiumpro | p6 | 6x86 | athlon | athlon_*)
914 basic_machine=i686-pc
915 ;;
916 pentiumii | pentium2 | pentiumiii | pentium3)
917 basic_machine=i686-pc
918 ;;
919 pentium4)
920 basic_machine=i786-pc
921 ;;
922 pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
923 basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`
924 ;;
925 pentiumpro-* | p6-* | 6x86-* | athlon-*)
926 basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
927 ;;
928 pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*)
929 basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
930 ;;
931 pentium4-*)
932 basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'`
933 ;;
934 pn)
935 basic_machine=pn-gould
936 ;;
937 power) basic_machine=power-ibm
938 ;;
939 ppc) basic_machine=powerpc-unknown
940 ;;
941 ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
942 ;;
943 ppcle | powerpclittle | ppc-le | powerpc-little)
944 basic_machine=powerpcle-unknown
945 ;;
946 ppcle-* | powerpclittle-*)
947 basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//' `
948 ;;
949 ppc64) basic_machine=powerpc64-unknown
950 ;;
951 ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-// '`
952 ;;
953 ppc64le | powerpc64little | ppc64-le | powerpc64-little)
954 basic_machine=powerpc64le-unknown
955 ;;
956 ppc64le-* | powerpc64little-*)
957 basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-/ /'`
958 ;;
959 ps2)
960 basic_machine=i386-ibm
961 ;;
962 pw32)
963 basic_machine=i586-unknown
964 os=-pw32
965 ;;
966 rdos)
967 basic_machine=i386-pc
968 os=-rdos
969 ;;
970 rom68k)
971 basic_machine=m68k-rom68k
972 os=-coff
973 ;;
974 rm[46]00)
975 basic_machine=mips-siemens
976 ;;
977 rtpc | rtpc-*)
978 basic_machine=romp-ibm
979 ;;
980 s390 | s390-*)
981 basic_machine=s390-ibm
982 ;;
983 s390x | s390x-*)
984 basic_machine=s390x-ibm
985 ;;
986 sa29200)
987 basic_machine=a29k-amd
988 os=-udi
989 ;;
990 sb1)
991 basic_machine=mipsisa64sb1-unknown
992 ;;
993 sb1el)
994 basic_machine=mipsisa64sb1el-unknown
995 ;;
996 sde)
997 basic_machine=mipsisa32-sde
998 os=-elf
999 ;;
1000 sei)
1001 basic_machine=mips-sei
1002 os=-seiux
1003 ;;
1004 sequent)
1005 basic_machine=i386-sequent
1006 ;;
1007 sh)
1008 basic_machine=sh-hitachi
1009 os=-hms
1010 ;;
1011 sh5el)
1012 basic_machine=sh5le-unknown
1013 ;;
1014 sh64)
1015 basic_machine=sh64-unknown
1016 ;;
1017 sparclite-wrs | simso-wrs)
1018 basic_machine=sparclite-wrs
1019 os=-vxworks
1020 ;;
1021 sps7)
1022 basic_machine=m68k-bull
1023 os=-sysv2
1024 ;;
1025 spur)
1026 basic_machine=spur-unknown
1027 ;;
1028 st2000)
1029 basic_machine=m68k-tandem
1030 ;;
1031 stratus)
1032 basic_machine=i860-stratus
1033 os=-sysv4
1034 ;;
1035 sun2)
1036 basic_machine=m68000-sun
1037 ;;
1038 sun2os3)
1039 basic_machine=m68000-sun
1040 os=-sunos3
1041 ;;
1042 sun2os4)
1043 basic_machine=m68000-sun
1044 os=-sunos4
1045 ;;
1046 sun3os3)
1047 basic_machine=m68k-sun
1048 os=-sunos3
1049 ;;
1050 sun3os4)
1051 basic_machine=m68k-sun
1052 os=-sunos4
1053 ;;
1054 sun4os3)
1055 basic_machine=sparc-sun
1056 os=-sunos3
1057 ;;
1058 sun4os4)
1059 basic_machine=sparc-sun
1060 os=-sunos4
1061 ;;
1062 sun4sol2)
1063 basic_machine=sparc-sun
1064 os=-solaris2
1065 ;;
1066 sun3 | sun3-*)
1067 basic_machine=m68k-sun
1068 ;;
1069 sun4)
1070 basic_machine=sparc-sun
1071 ;;
1072 sun386 | sun386i | roadrunner)
1073 basic_machine=i386-sun
1074 ;;
1075 sv1)
1076 basic_machine=sv1-cray
1077 os=-unicos
1078 ;;
1079 symmetry)
1080 basic_machine=i386-sequent
1081 os=-dynix
1082 ;;
1083 t3e)
1084 basic_machine=alphaev5-cray
1085 os=-unicos
1086 ;;
1087 t90)
1088 basic_machine=t90-cray
1089 os=-unicos
1090 ;;
1091 tic54x | c54x*)
1092 basic_machine=tic54x-unknown
1093 os=-coff
1094 ;;
1095 tic55x | c55x*)
1096 basic_machine=tic55x-unknown
1097 os=-coff
1098 ;;
1099 tic6x | c6x*)
1100 basic_machine=tic6x-unknown
1101 os=-coff
1102 ;;
1103 tile*)
1104 basic_machine=tile-unknown
1105 os=-linux-gnu
1106 ;;
1107 tx39)
1108 basic_machine=mipstx39-unknown
1109 ;;
1110 tx39el)
1111 basic_machine=mipstx39el-unknown
1112 ;;
1113 toad1)
1114 basic_machine=pdp10-xkl
1115 os=-tops20
1116 ;;
1117 tower | tower-32)
1118 basic_machine=m68k-ncr
1119 ;;
1120 tpf)
1121 basic_machine=s390x-ibm
1122 os=-tpf
1123 ;;
1124 udi29k)
1125 basic_machine=a29k-amd
1126 os=-udi
1127 ;;
1128 ultra3)
1129 basic_machine=a29k-nyu
1130 os=-sym1
1131 ;;
1132 v810 | necv810)
1133 basic_machine=v810-nec
1134 os=-none
1135 ;;
1136 vaxv)
1137 basic_machine=vax-dec
1138 os=-sysv
1139 ;;
1140 vms)
1141 basic_machine=vax-dec
1142 os=-vms
1143 ;;
1144 vpp*|vx|vx-*)
1145 basic_machine=f301-fujitsu
1146 ;;
1147 vxworks960)
1148 basic_machine=i960-wrs
1149 os=-vxworks
1150 ;;
1151 vxworks68)
1152 basic_machine=m68k-wrs
1153 os=-vxworks
1154 ;;
1155 vxworks29k)
1156 basic_machine=a29k-wrs
1157 os=-vxworks
1158 ;;
1159 w65*)
1160 basic_machine=w65-wdc
1161 os=-none
1162 ;;
1163 w89k-*)
1164 basic_machine=hppa1.1-winbond
1165 os=-proelf
1166 ;;
1167 xbox)
1168 basic_machine=i686-pc
1169 os=-mingw32
1170 ;;
1171 xps | xps100)
1172 basic_machine=xps100-honeywell
1173 ;;
1174 ymp)
1175 basic_machine=ymp-cray
1176 os=-unicos
1177 ;;
1178 z8k-*-coff)
1179 basic_machine=z8k-unknown
1180 os=-sim
1181 ;;
1182 z80-*-coff)
1183 basic_machine=z80-unknown
1184 os=-sim
1185 ;;
1186 none)
1187 basic_machine=none-none
1188 os=-none
1189 ;;
1190
1191 # Here we handle the default manufacturer of certain CPU types. It is in
1192 # some cases the only manufacturer, in others, it is the most popular.
1193 w89k)
1194 basic_machine=hppa1.1-winbond
1195 ;;
1196 op50n)
1197 basic_machine=hppa1.1-oki
1198 ;;
1199 op60c)
1200 basic_machine=hppa1.1-oki
1201 ;;
1202 romp)
1203 basic_machine=romp-ibm
1204 ;;
1205 mmix)
1206 basic_machine=mmix-knuth
1207 ;;
1208 rs6000)
1209 basic_machine=rs6000-ibm
1210 ;;
1211 vax)
1212 basic_machine=vax-dec
1213 ;;
1214 pdp10)
1215 # there are many clones, so DEC is not a safe bet
1216 basic_machine=pdp10-unknown
1217 ;;
1218 pdp11)
1219 basic_machine=pdp11-dec
1220 ;;
1221 we32k)
1222 basic_machine=we32k-att
1223 ;;
1224 sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele)
1225 basic_machine=sh-unknown
1226 ;;
1227 sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v)
1228 basic_machine=sparc-sun
1229 ;;
1230 cydra)
1231 basic_machine=cydra-cydrome
1232 ;;
1233 orion)
1234 basic_machine=orion-highlevel
1235 ;;
1236 orion105)
1237 basic_machine=clipper-highlevel
1238 ;;
1239 mac | mpw | mac-mpw)
1240 basic_machine=m68k-apple
1241 ;;
1242 pmac | pmac-mpw)
1243 basic_machine=powerpc-apple
1244 ;;
1245 *-unknown)
1246 # Make sure to match an already-canonicalized machine name.
1247 ;;
1248 *)
1249 echo Invalid configuration \`$1\': machine \`$basic_machine\' no t recognized 1>&2
1250 exit 1
1251 ;;
1252 esac
1253
1254 # Here we canonicalize certain aliases for manufacturers.
1255 case $basic_machine in
1256 *-digital*)
1257 basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
1258 ;;
1259 *-commodore*)
1260 basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
1261 ;;
1262 *)
1263 ;;
1264 esac
1265
1266 # Decode manufacturer-specific aliases for certain operating systems.
1267
1268 if [ x"$os" != x"" ]
1269 then
1270 case $os in
1271 # First match some system type aliases
1272 # that might get confused with valid system types.
1273 # -solaris* is a basic system type, with this one exception.
1274 -solaris1 | -solaris1.*)
1275 os=`echo $os | sed -e 's|solaris1|sunos4|'`
1276 ;;
1277 -solaris)
1278 os=-solaris2
1279 ;;
1280 -svr4*)
1281 os=-sysv4
1282 ;;
1283 -unixware*)
1284 os=-sysv4.2uw
1285 ;;
1286 -gnu/linux*)
1287 os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
1288 ;;
1289 # First accept the basic system types.
1290 # The portable systems comes first.
1291 # Each alternative MUST END IN A *, to match a version number.
1292 # -sysv* is not here because it comes later, after sysvr4.
1293 -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
1294 | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -suno s[34]*\
1295 | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \
1296 | -kopensolaris* \
1297 | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \
1298 | -aos* | -aros* \
1299 | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
1300 | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
1301 | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \
1302 | -openbsd* | -solidbsd* \
1303 | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \
1304 | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
1305 | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
1306 | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
1307 | -chorusos* | -chorusrdb* | -cegcc* \
1308 | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
1309 | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \
1310 | -uxpv* | -beos* | -mpeix* | -udk* \
1311 | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
1312 | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
1313 | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \
1314 | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
1315 | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
1316 | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
1317 | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -irx*)
1318 # Remember, each alternative MUST END IN *, to match a version number.
1319 ;;
1320 -qnx*)
1321 case $basic_machine in
1322 x86-* | i*86-*)
1323 ;;
1324 *)
1325 os=-nto$os
1326 ;;
1327 esac
1328 ;;
1329 -nto-qnx*)
1330 ;;
1331 -nto*)
1332 os=`echo $os | sed -e 's|nto|nto-qnx|'`
1333 ;;
1334 -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \
1335 | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \
1336 | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*)
1337 ;;
1338 -mac*)
1339 os=`echo $os | sed -e 's|mac|macos|'`
1340 ;;
1341 -linux-dietlibc)
1342 os=-linux-dietlibc
1343 ;;
1344 -linux*)
1345 os=`echo $os | sed -e 's|linux|linux-gnu|'`
1346 ;;
1347 -sunos5*)
1348 os=`echo $os | sed -e 's|sunos5|solaris2|'`
1349 ;;
1350 -sunos6*)
1351 os=`echo $os | sed -e 's|sunos6|solaris3|'`
1352 ;;
1353 -opened*)
1354 os=-openedition
1355 ;;
1356 -os400*)
1357 os=-os400
1358 ;;
1359 -wince*)
1360 os=-wince
1361 ;;
1362 -osfrose*)
1363 os=-osfrose
1364 ;;
1365 -osf*)
1366 os=-osf
1367 ;;
1368 -utek*)
1369 os=-bsd
1370 ;;
1371 -dynix*)
1372 os=-bsd
1373 ;;
1374 -acis*)
1375 os=-aos
1376 ;;
1377 -atheos*)
1378 os=-atheos
1379 ;;
1380 -syllable*)
1381 os=-syllable
1382 ;;
1383 -386bsd)
1384 os=-bsd
1385 ;;
1386 -ctix* | -uts*)
1387 os=-sysv
1388 ;;
1389 -nova*)
1390 os=-rtmk-nova
1391 ;;
1392 -ns2 )
1393 os=-nextstep2
1394 ;;
1395 -nsk*)
1396 os=-nsk
1397 ;;
1398 # Preserve the version number of sinix5.
1399 -sinix5.*)
1400 os=`echo $os | sed -e 's|sinix|sysv|'`
1401 ;;
1402 -sinix*)
1403 os=-sysv4
1404 ;;
1405 -tpf*)
1406 os=-tpf
1407 ;;
1408 -triton*)
1409 os=-sysv3
1410 ;;
1411 -oss*)
1412 os=-sysv3
1413 ;;
1414 -svr4)
1415 os=-sysv4
1416 ;;
1417 -svr3)
1418 os=-sysv3
1419 ;;
1420 -sysvr4)
1421 os=-sysv4
1422 ;;
1423 # This must come after -sysvr4.
1424 -sysv*)
1425 ;;
1426 -ose*)
1427 os=-ose
1428 ;;
1429 -es1800*)
1430 os=-ose
1431 ;;
1432 -xenix)
1433 os=-xenix
1434 ;;
1435 -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
1436 os=-mint
1437 ;;
1438 -aros*)
1439 os=-aros
1440 ;;
1441 -kaos*)
1442 os=-kaos
1443 ;;
1444 -zvmoe)
1445 os=-zvmoe
1446 ;;
1447 -dicos*)
1448 os=-dicos
1449 ;;
1450 -none)
1451 ;;
1452 *)
1453 # Get rid of the `-' at the beginning of $os.
1454 os=`echo $os | sed 's/[^-]*-//'`
1455 echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2
1456 exit 1
1457 ;;
1458 esac
1459 else
1460
1461 # Here we handle the default operating systems that come with various machines.
1462 # The value should be what the vendor currently ships out the door with their
1463 # machine or put another way, the most popular os provided with the machine.
1464
1465 # Note that if you're going to try to match "-MANUFACTURER" here (say,
1466 # "-sun"), then you have to tell the case statement up towards the top
1467 # that MANUFACTURER isn't an operating system. Otherwise, code above
1468 # will signal an error saying that MANUFACTURER isn't an operating
1469 # system, and we'll never get to this point.
1470
1471 case $basic_machine in
1472 score-*)
1473 os=-elf
1474 ;;
1475 spu-*)
1476 os=-elf
1477 ;;
1478 *-acorn)
1479 os=-riscix1.2
1480 ;;
1481 arm*-rebel)
1482 os=-linux
1483 ;;
1484 arm*-semi)
1485 os=-aout
1486 ;;
1487 c4x-* | tic4x-*)
1488 os=-coff
1489 ;;
1490 # This must come before the *-dec entry.
1491 pdp10-*)
1492 os=-tops20
1493 ;;
1494 pdp11-*)
1495 os=-none
1496 ;;
1497 *-dec | vax-*)
1498 os=-ultrix4.2
1499 ;;
1500 m68*-apollo)
1501 os=-domain
1502 ;;
1503 i386-sun)
1504 os=-sunos4.0.2
1505 ;;
1506 m68000-sun)
1507 os=-sunos3
1508 # This also exists in the configure program, but was not the
1509 # default.
1510 # os=-sunos4
1511 ;;
1512 m68*-cisco)
1513 os=-aout
1514 ;;
1515 mep-*)
1516 os=-elf
1517 ;;
1518 mips*-cisco)
1519 os=-elf
1520 ;;
1521 mips*-*)
1522 os=-elf
1523 ;;
1524 or32-*)
1525 os=-coff
1526 ;;
1527 *-tti) # must be before sparc entry or we get the wrong os.
1528 os=-sysv3
1529 ;;
1530 sparc-* | *-sun)
1531 os=-sunos4.1.1
1532 ;;
1533 *-be)
1534 os=-beos
1535 ;;
1536 *-haiku)
1537 os=-haiku
1538 ;;
1539 *-ibm)
1540 os=-aix
1541 ;;
1542 *-knuth)
1543 os=-mmixware
1544 ;;
1545 *-wec)
1546 os=-proelf
1547 ;;
1548 *-winbond)
1549 os=-proelf
1550 ;;
1551 *-oki)
1552 os=-proelf
1553 ;;
1554 *-hp)
1555 os=-hpux
1556 ;;
1557 *-hitachi)
1558 os=-hiux
1559 ;;
1560 i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent)
1561 os=-sysv
1562 ;;
1563 *-cbm)
1564 os=-amigaos
1565 ;;
1566 *-dg)
1567 os=-dgux
1568 ;;
1569 *-dolphin)
1570 os=-sysv3
1571 ;;
1572 m68k-ccur)
1573 os=-rtu
1574 ;;
1575 m88k-omron*)
1576 os=-luna
1577 ;;
1578 *-next )
1579 os=-nextstep
1580 ;;
1581 *-sequent)
1582 os=-ptx
1583 ;;
1584 *-crds)
1585 os=-unos
1586 ;;
1587 *-ns)
1588 os=-genix
1589 ;;
1590 i370-*)
1591 os=-mvs
1592 ;;
1593 *-next)
1594 os=-nextstep3
1595 ;;
1596 *-gould)
1597 os=-sysv
1598 ;;
1599 *-highlevel)
1600 os=-bsd
1601 ;;
1602 *-encore)
1603 os=-bsd
1604 ;;
1605 *-sgi)
1606 os=-irix
1607 ;;
1608 *-siemens)
1609 os=-sysv4
1610 ;;
1611 *-masscomp)
1612 os=-rtu
1613 ;;
1614 f30[01]-fujitsu | f700-fujitsu)
1615 os=-uxpv
1616 ;;
1617 *-rom68k)
1618 os=-coff
1619 ;;
1620 *-*bug)
1621 os=-coff
1622 ;;
1623 *-apple)
1624 os=-macos
1625 ;;
1626 *-atari*)
1627 os=-mint
1628 ;;
1629 *)
1630 os=-none
1631 ;;
1632 esac
1633 fi
1634
1635 # Here we handle the case where we know the os, and the CPU type, but not the
1636 # manufacturer. We pick the logical manufacturer.
1637 vendor=unknown
1638 case $basic_machine in
1639 *-unknown)
1640 case $os in
1641 -riscix*)
1642 vendor=acorn
1643 ;;
1644 -sunos*)
1645 vendor=sun
1646 ;;
1647 -cnk*|-aix*)
1648 vendor=ibm
1649 ;;
1650 -beos*)
1651 vendor=be
1652 ;;
1653 -hpux*)
1654 vendor=hp
1655 ;;
1656 -mpeix*)
1657 vendor=hp
1658 ;;
1659 -hiux*)
1660 vendor=hitachi
1661 ;;
1662 -unos*)
1663 vendor=crds
1664 ;;
1665 -dgux*)
1666 vendor=dg
1667 ;;
1668 -luna*)
1669 vendor=omron
1670 ;;
1671 -genix*)
1672 vendor=ns
1673 ;;
1674 -mvs* | -opened*)
1675 vendor=ibm
1676 ;;
1677 -os400*)
1678 vendor=ibm
1679 ;;
1680 -ptx*)
1681 vendor=sequent
1682 ;;
1683 -tpf*)
1684 vendor=ibm
1685 ;;
1686 -vxsim* | -vxworks* | -windiss*)
1687 vendor=wrs
1688 ;;
1689 -aux*)
1690 vendor=apple
1691 ;;
1692 -hms*)
1693 vendor=hitachi
1694 ;;
1695 -mpw* | -macos*)
1696 vendor=apple
1697 ;;
1698 -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
1699 vendor=atari
1700 ;;
1701 -vos*)
1702 vendor=stratus
1703 ;;
1704 esac
1705 basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
1706 ;;
1707 esac
1708
1709 echo $basic_machine$os
1710 exit
1711
1712 # Local variables:
1713 # eval: (add-hook 'write-file-hooks 'time-stamp)
1714 # time-stamp-start: "timestamp='"
1715 # time-stamp-format: "%:y-%02m-%02d"
1716 # time-stamp-end: "'"
1717 # End:
OLDNEW
« no previous file with comments | « build-aux/config.guess ('k') | build-aux/depcomp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698