* Sanitization fixes to retain new files.
[binutils-gdb.git] / config.sub
blob535f70e2ca240a5518a43622bb1e813b06474834
1 #! /bin/sh
2 # Configuration validation subroutine script, version 1.1.
3 # Copyright (C) 1991, 92-97, 1998 Free Software Foundation, Inc.
4 # This file is (in principle) common to ALL GNU software.
5 # The presence of a machine in this file suggests that SOME GNU software
6 # can handle that machine. It does not imply ALL GNU software can.
8 # This file is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 59 Temple Place - Suite 330,
21 # Boston, MA 02111-1307, USA.
23 # As a special exception to the GNU General Public License, if you
24 # distribute this file as part of a program that contains a
25 # configuration script generated by Autoconf, you may include it under
26 # the same distribution terms that you use for the rest of that program.
28 # Configuration subroutine to validate and canonicalize a configuration type.
29 # Supply the specified configuration type as an argument.
30 # If it is invalid, we print an error message on stderr and exit with code 1.
31 # Otherwise, we print the canonical config type on stdout and succeed.
33 # This file is supposed to be the same for all GNU packages
34 # and recognize all the CPU types, system types and aliases
35 # that are meaningful with *any* GNU software.
36 # Each package is responsible for reporting which valid configurations
37 # it does not support. The user should be able to distinguish
38 # a failure to support a valid configuration from a meaningless
39 # configuration.
41 # The goal of this file is to map all the various variations of a given
42 # machine specification into a single specification in the form:
43 # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
44 # or in some cases, the newer four-part form:
45 # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
46 # It is wrong to echo any other type of specification.
48 if [ x$1 = x ]
49 then
50 echo Configuration name missing. 1>&2
51 echo "Usage: $0 CPU-MFR-OPSYS" 1>&2
52 echo "or $0 ALIAS" 1>&2
53 echo where ALIAS is a recognized configuration type. 1>&2
54 exit 1
57 # First pass through any local machine types.
58 case $1 in
59 *local*)
60 echo $1
61 exit 0
65 esac
67 # CYGNUS LOCAL marketing-names
68 # Here we handle any "marketing" names - translating them to
69 # standard triplets
70 case $1 in
71 mips-tx39-elf)
72 set mipstx39-unknown-elf
74 # start-sanitize-tx19
75 mips-tx19-elf)
76 set mipstx19-unknown-elf
78 # end-sanitize-tx19
79 # start-sanitize-tx49
80 mips-tx49-elf)
81 set mips64tx49-unknown-elf
83 # end-sanitize-tx49
84 # start-sanitize-cygnus
85 mips64vr5xxx-elf)
86 set mips64vr5000-elf
88 # end-sanitize-cygnus
89 # start-sanitize-sky
90 vpu-elf)
91 set mips64el-skyb-elf
93 # end-sanitize-sky
96 esac
97 # END CYGNUS LOCAL marketing-names
99 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
100 # Here we must recognize all the valid KERNEL-OS combinations.
101 maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
102 case $maybe_os in
103 linux-gnu*)
104 os=-$maybe_os
105 basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
108 basic_machine=`echo $1 | sed 's/-[^-]*$//'`
109 if [ $basic_machine != $1 ]
110 then os=`echo $1 | sed 's/.*-/-/'`
111 else os=; fi
113 esac
115 ### Let's recognize common machines as not being operating systems so
116 ### that things like config.sub decstation-3100 work. We also
117 ### recognize some manufacturers as not being operating systems, so we
118 ### can provide default operating systems below.
119 case $os in
120 -sun*os*)
121 # Prevent following clause from handling this invalid input.
123 -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \
124 -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \
125 -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \
126 -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
127 -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
128 -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
129 -apple)
131 basic_machine=$1
133 -sim | -cisco | -oki | -wec | -winbond ) # CYGNUS LOCAL
135 basic_machine=$1
137 -scout) # CYGNUS LOCAL
139 -wrs) # CYGNUS LOCAL
140 os=vxworks
141 basic_machine=$1
143 -hiux*)
144 os=-hiuxwe2
146 -sco5)
147 os=-sco3.2v5
148 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
150 -sco4)
151 os=-sco3.2v4
152 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
154 -sco3.2.[4-9]*)
155 os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
156 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
158 -sco3.2v[4-9]*)
159 # Don't forget version if it is 3.2v4 or newer.
160 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
162 -sco*)
163 os=-sco3.2v2
164 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
166 -udk*)
167 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
169 -isc)
170 os=-isc2.2
171 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
173 -clix*)
174 basic_machine=clipper-intergraph
176 -isc*)
177 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
179 -lynx*)
180 os=-lynxos
182 -ptx*)
183 basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`
185 -windowsnt*)
186 os=`echo $os | sed -e 's/windowsnt/winnt/'`
188 -psos*)
189 os=-psos
191 esac
193 # Decode aliases for certain CPU-COMPANY combinations.
194 case $basic_machine in
195 # Recognize the basic CPU types without company name.
196 # Some are omitted here because they have special meanings below.
197 tahoe | i860 | m32r | m68k | m68000 | m88k | ns32k | arc | arm \
198 | arme[lb] | pyramid | mn10200 | mn10300 \
199 | tron | a29k | 580 | i960 | h8300 | hppa | hppa1.0 | hppa1.1 \
200 | alpha | alphaev5 | alphaev56 | alphapca56 | alphaev6 \
201 | we32k | ns16k | clipper | i370 | sh | powerpc | powerpcle \
202 | 1750a | dsp16xx | pdp11 \
203 | mips64 | mipsel | mips64el | mips64orion | mips64orionel \
204 | mipstx39 | mipstx39el \
205 | sparc | sparclet | sparclite | sparc64 | sparc86x | v850 \
206 | c4x)
207 basic_machine=$basic_machine-unknown
209 m88110 | m680[012346]0 | m683?2 | m68360 | m5200 | z8k | v70 \
210 | h8500 | w65 | fr30) # CYGNUS LOCAL
211 basic_machine=$basic_machine-unknown
213 thumb)
214 basic_machine=$basic_machine-unknown
216 # start-sanitize-vr4xxx
217 mips64vr4xxx | mips64vr4xxxel)
218 basic_machine=$basic_machine-unknown
220 # end-sanitize-vr4xxx
221 # start-sanitize-vr4320
222 mips64vr4320 | mips64vr4320el)
223 basic_machine=$basic_machine-unknown
225 # end-sanitize-vr4320
226 mips64vr4300 | mips64vr4300el) # CYGNUS LOCAL jsmith/vr4300
227 basic_machine=$basic_machine-unknown
229 mips64vr4100 | mips64vr4100el) # CYGNUS LOCAL jsmith/vr4100
230 basic_machine=$basic_machine-unknown
232 mips64vr5000 | mips64vr5000el) # CYGNUS LOCAL ian/vr5000
233 basic_machine=$basic_machine-unknown
235 # start-sanitize-cygnus
236 mips64vr5400) # CYGNUS LOCAL cagney/vr5400
237 basic_machine=$basic_machine-unknown
239 # end-sanitize-cygnus
240 # start-sanitize-tx19
241 mipstx19 | mipstx19el)
242 basic_machine=$basic_machine-unknown
244 # end-sanitize-tx19
245 # start-sanitize-tx49
246 mips64tx49 | mips64tx49el)
247 basic_machine=$basic_machine-unknown
249 # end-sanitize-tx49
250 # start-sanitize-r5900
251 mips64r5900 | mips64r5900el) # CYGNUS LOCAL gavin/r5900
252 basic_machine=$basic_machine-unknown
254 # end-sanitize-r5900
255 mips16)
256 basic_machine=$basic_machine-unknown
258 tic30) # CYGNUS LOCAL ian/tic30
259 basic_machine=$basic_machine-unknown
261 c30) # CYGNUS LOCAL ian/tic30
262 basic_machine=tic30-unknown
265 # start-sanitize-tic80
266 tic80) # CYGNUS LOCAL fnf/TIc80
267 basic_machine=$basic_machine-unknown
269 # end-sanitize-tic80
270 # start-sanitize-sky
271 dvp)
272 basic_machine=$basic_machine-unknown
274 # end-sanitize-sky
275 # start-sanitize-v850e
276 v850e) # CYGNUS LOCAL jtc/v850
277 basic_machine=$basic_machine-unknown
279 v850ea) # CYGNUS LOCAL jtc/v850
280 basic_machine=$basic_machine-unknown
282 # end-sanitize-v850e
283 d10v)
284 basic_machine=$basic_machine-unknown
286 d30v) # CYGNUS LOCAL hunt/d30v
287 basic_machine=$basic_machine-unknown
289 # We use `pc' rather than `unknown'
290 # because (1) that's what they normally are, and
291 # (2) the word "unknown" tends to confuse beginning users.
292 i[34567]86)
293 basic_machine=$basic_machine-pc
295 # Object if more than one company name word.
296 *-*-*)
297 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
298 exit 1
300 # Recognize the basic CPU types with company name.
301 vax-* | tahoe-* | i[34567]86-* | i860-* | m32r-* | m68k-* | m68000-* \
302 | m88k-* | sparc-* | ns32k-* | fx80-* | arc-* | arm-* | c[123]* \
303 | mips-* | pyramid-* | tron-* | a29k-* | romp-* | rs6000-* \
304 | power-* | none-* | 580-* | cray2-* | h8300-* | i960-* \
305 | xmp-* | ymp-* | hppa-* | hppa1.0-* | hppa1.1-* \
306 | alpha-* | alphaev5-* | alphaev56-* | alphapca56-* \
307 | alphaev6-* | we32k-* | cydra-* | ns16k-* | pn-* | np1-* \
308 | xps100-* | clipper-* | orion-* \
309 | sparclite-* | pdp11-* | sh-* | powerpc-* | powerpcle-* \
310 | sparc64-* | sparcv9-* | sparc86x-* | mips64-* | mipsel-* \
311 | mips64el-* | mips64orion-* | mips64orionel-* \
312 | mipstx39-* | mipstx39el-* \
313 | f301-* \
314 | fr30-*) # CYGNUS LOCAL
316 m88110-* | m680[01234]0-* | m683?2-* | m68360-* | z8k-* | h8500-* | d10v-*) # CYGNUS LOCAL
318 thumb-*) # CYGNUS LOCAL angela/thumb
320 # start-sanitize-sky
321 dvp-* | txvu-*)
323 # end-sanitize-sky
324 v850-*) # CYGNUS LOCAL
326 # start-sanitize-v850e
327 v850e-*) # CYGNUS LOCAL
329 v850ea-*) # CYGNUS LOCAL
331 # end-sanitize-v850e
332 d30v-*) # CYGNUS LOCAL
334 # start-sanitize-vr4xxx
335 mips64vr4xxx-* | mips64vr4xxxel-*)
337 # end-sanitize-vr4xxx
338 # start-sanitize-vr4320
339 mips64vr4320-* | mips64vr4320el-*)
341 # end-sanitize-vr4320
342 mips64vr4300-* | mips64vr4300el-*) # CYGNUS LOCAL jsmith/vr4300
344 mips64vr4100-* | mips64vr4100el-*) # CYGNUS LOCAL jsmith/vr4100
346 # start-sanitize-tx19
347 mipstx19-* | mipstx19el-*)
349 # end-sanitize-tx19
350 # start-sanitize-tx49
351 mips64tx49-* | mips64tx49el-*)
353 # end-sanitize-tx49
354 # start-sanitize-r5900
355 mips64r5900-* | mips64r5900el-*) # CYGNUS LOCAL gavin/r5900
357 # end-sanitize-r5900
358 mips16-*) # CYGNUS LOCAL krk/mips16
360 tic30-*) # CYGNUS LOCAL ian/tic30
362 c30-*) # CYGNUS LOCAL ian/tic30
363 basic_machine=tic30-unknown
365 # start-sanitize-tic80
366 tic80-*) # CYGNUS LOCAL fnf/TIc80
368 # end-sanitize-tic80
369 # Recognize the various machine names and aliases which stand
370 # for a CPU type and a company and sometimes even an OS.
371 386bsd) # CYGNUS LOCAL
372 basic_machine=i386-unknown
373 os=-bsd
375 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
376 basic_machine=m68000-att
378 3b*)
379 basic_machine=we32k-att
381 a29khif) # CYGNUS LOCAL
382 basic_machine=a29k-amd
383 os=-udi
385 adobe68k) # CYGNUS LOCAL
386 basic_machine=m68010-adobe
387 os=-scout
389 alliant | fx80)
390 basic_machine=fx80-alliant
392 altos | altos3068)
393 basic_machine=m68k-altos
395 am29k)
396 basic_machine=a29k-none
397 os=-bsd
399 amdahl)
400 basic_machine=580-amdahl
401 os=-sysv
403 amiga | amiga-*)
404 basic_machine=m68k-cbm
406 amigaos | amigados)
407 basic_machine=m68k-cbm
408 os=-amigaos
410 amigaunix | amix)
411 basic_machine=m68k-cbm
412 os=-sysv4
414 apollo68)
415 basic_machine=m68k-apollo
416 os=-sysv
418 apollo68bsd) # CYGNUS LOCAL
419 basic_machine=m68k-apollo
420 os=-bsd
422 aux)
423 basic_machine=m68k-apple
424 os=-aux
426 balance)
427 basic_machine=ns32k-sequent
428 os=-dynix
430 convex-c1)
431 basic_machine=c1-convex
432 os=-bsd
434 convex-c2)
435 basic_machine=c2-convex
436 os=-bsd
438 convex-c32)
439 basic_machine=c32-convex
440 os=-bsd
442 convex-c34)
443 basic_machine=c34-convex
444 os=-bsd
446 convex-c38)
447 basic_machine=c38-convex
448 os=-bsd
450 cray | ymp)
451 basic_machine=ymp-cray
452 os=-unicos
454 cray2)
455 basic_machine=cray2-cray
456 os=-unicos
458 [ctj]90-cray)
459 basic_machine=c90-cray
460 os=-unicos
462 crds | unos)
463 basic_machine=m68k-crds
465 da30 | da30-*)
466 basic_machine=m68k-da30
468 decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn)
469 basic_machine=mips-dec
471 delta | 3300 | motorola-3300 | motorola-delta \
472 | 3300-motorola | delta-motorola)
473 basic_machine=m68k-motorola
475 delta88)
476 basic_machine=m88k-motorola
477 os=-sysv3
479 dpx20 | dpx20-*)
480 basic_machine=rs6000-bull
481 os=-bosx
483 dpx2* | dpx2*-bull)
484 basic_machine=m68k-bull
485 os=-sysv3
487 ebmon29k)
488 basic_machine=a29k-amd
489 os=-ebmon
491 elxsi)
492 basic_machine=elxsi-elxsi
493 os=-bsd
495 encore | umax | mmax)
496 basic_machine=ns32k-encore
498 es1800 | OSE68k | ose68k | ose | OSE) # CYGNUS LOCAL
499 basic_machine=m68k-ericsson
500 os=-ose
502 fx2800)
503 basic_machine=i860-alliant
505 genix)
506 basic_machine=ns32k-ns
508 gmicro)
509 basic_machine=tron-gmicro
510 os=-sysv
512 h3050r* | hiux*)
513 basic_machine=hppa1.1-hitachi
514 os=-hiuxwe2
516 h8300hms)
517 basic_machine=h8300-hitachi
518 os=-hms
520 h8300xray) # CYGNUS LOCAL
521 basic_machine=h8300-hitachi
522 os=-xray
524 h8500hms) # CYGNUS LOCAL
525 basic_machine=h8500-hitachi
526 os=-hms
528 harris)
529 basic_machine=m88k-harris
530 os=-sysv3
532 hp300-*)
533 basic_machine=m68k-hp
535 hp300bsd)
536 basic_machine=m68k-hp
537 os=-bsd
539 hp300hpux)
540 basic_machine=m68k-hp
541 os=-hpux
543 w89k-*) # CYGNUS LOCAL
544 basic_machine=hppa1.1-winbond
545 os=-proelf
547 op50n-*) # CYGNUS LOCAL
548 basic_machine=hppa1.1-oki
549 os=-proelf
551 op60c-*) # CYGNUS LOCAL
552 basic_machine=hppa1.1-oki
553 os=-proelf
555 hppro) # CYGNUS LOCAL
556 basic_machine=hppa1.1-hp
557 os=-proelf
559 hp3k9[0-9][0-9] | hp9[0-9][0-9])
560 basic_machine=hppa1.0-hp
562 hp9k2[0-9][0-9] | hp9k31[0-9])
563 basic_machine=m68000-hp
565 hp9k3[2-9][0-9])
566 basic_machine=m68k-hp
568 hp9k6[0-9][0-9] | hp6[0-9][0-9] )
569 basic_machine=hppa1.0-hp
571 hp9k7[0-79][0-9] | hp7[0-79][0-9] )
572 basic_machine=hppa1.1-hp
574 hp9k78[0-9] | hp78[0-9] )
575 # FIXME: really hppa2.0-hp
576 basic_machine=hppa1.1-hp
578 hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | \
579 hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893 )
580 # FIXME: really hppa2.0-hp
581 basic_machine=hppa1.1-hp
583 hp9k8[0-9][13679] | hp8[0-9][13679] )
584 basic_machine=hppa1.1-hp
586 hp9k8[0-9][0-9] | hp8[0-9][0-9])
587 basic_machine=hppa1.0-hp
589 hppa-next)
590 os=-nextstep3
592 hppaosf) # CYGNUS LOCAL
593 basic_machine=hppa1.1-hp
594 os=-osf
596 i370-ibm* | ibm*)
597 basic_machine=i370-ibm
598 os=-mvs
600 # I'm not sure what "Sysv32" means. Should this be sysv3.2?
601 i[34567]86v32)
602 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
603 os=-sysv32
605 i[34567]86v4*)
606 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
607 os=-sysv4
609 i[34567]86v)
610 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
611 os=-sysv
613 i[34567]86sol2)
614 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
615 os=-solaris2
617 i386mach) # CYGNUS LOCAL
618 basic_machine=i386-mach
619 os=-mach
621 i386-vsta | vsta) # CYGNUS LOCAL
622 basic_machine=i386-unknown
623 os=-vsta
625 i386-go32 | go32) # CYGNUS LOCAL
626 basic_machine=i386-unknown
627 os=-go32
629 i386-mingw32 | mingw32)
630 basic_machine=i386-unknown
631 os=-mingw32
633 iris | iris4d)
634 basic_machine=mips-sgi
635 case $os in
636 -irix*)
639 os=-irix4
641 esac
643 isi68 | isi)
644 basic_machine=m68k-isi
645 os=-sysv
647 m88k-omron*)
648 basic_machine=m88k-omron
650 magnum | m3230)
651 basic_machine=mips-mips
652 os=-sysv
654 merlin)
655 basic_machine=ns32k-utek
656 os=-sysv
658 miniframe)
659 basic_machine=m68000-convergent
661 mipsel*-linux*)
662 basic_machine=mipsel-unknown
663 os=-linux-gnu
665 mips*-linux*)
666 basic_machine=mips-unknown
667 os=-linux-gnu
669 mips3*-*)
670 basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
672 mips3*)
673 basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
675 monitor) # CYGNUS LOCAL
676 basic_machine=m68k-rom68k
677 os=-coff
679 msdos) # CYGNUS LOCAL
680 basic_machine=i386-unknown
681 os=-msdos
683 ncr3000)
684 basic_machine=i486-ncr
685 os=-sysv4
687 netbsd386)
688 basic_machine=i386-unknown # CYGNUS LOCAL
689 os=-netbsd
691 news | news700 | news800 | news900)
692 basic_machine=m68k-sony
693 os=-newsos
695 news1000)
696 basic_machine=m68030-sony
697 os=-newsos
699 news-3600 | risc-news)
700 basic_machine=mips-sony
701 os=-newsos
703 necv70) # CYGNUS LOCAL
704 basic_machine=v70-nec
705 os=-sysv
707 next | m*-next )
708 basic_machine=m68k-next
709 case $os in
710 -nextstep* )
712 -ns2*)
713 os=-nextstep2
716 os=-nextstep3
718 esac
720 nh3000)
721 basic_machine=m68k-harris
722 os=-cxux
724 nh[45]000)
725 basic_machine=m88k-harris
726 os=-cxux
728 nindy960)
729 basic_machine=i960-intel
730 os=-nindy
732 mon960) # CYGNUS LOCAL
733 basic_machine=i960-intel
734 os=-mon960
736 np1)
737 basic_machine=np1-gould
739 OSE68000 | ose68000) # CYGNUS LOCAL
740 basic_machine=m68000-ericsson
741 os=-ose
743 os68k) # CYGNUS LOCAL
744 basic_machine=m68k-none
745 os=-os68k
747 pa-hitachi)
748 basic_machine=hppa1.1-hitachi
749 os=-hiuxwe2
751 paragon)
752 basic_machine=i860-intel
753 os=-osf
755 pbd)
756 basic_machine=sparc-tti
758 pbb)
759 basic_machine=m68k-tti
761 pc532 | pc532-*)
762 basic_machine=ns32k-pc532
764 pentium | p5 | k5 | nexen)
765 basic_machine=i586-pc
767 pentiumpro | p6 | k6 | 6x86)
768 basic_machine=i686-pc
770 pentiumii | pentium2)
771 basic_machine=i786-pc
773 pentium-* | p5-* | k5-* | nexen-*)
774 basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`
776 pentiumpro-* | p6-* | k6-* | 6x86-*)
777 basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
779 pentiumii-* | pentium2-*)
780 basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'`
783 basic_machine=pn-gould
785 power) basic_machine=rs6000-ibm
787 ppc) basic_machine=powerpc-unknown
789 ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
791 ppcle | powerpclittle | ppc-le | powerpc-little)
792 basic_machine=powerpcle-unknown
794 ppcle-* | powerpclittle-*)
795 basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'`
797 ps2)
798 basic_machine=i386-ibm
800 # start-sanitize-tx19
801 r1900)
802 basic_machine=mipstx19-unknown
804 r1900el)
805 basic_machine=mipstx19el-unknown
807 # end-sanitize-tx19
808 # start-sanitize-r5900
809 r5900 | r5900el) # CYGNUS LOCAL
810 basic_machine=mips64r5900-unknown
812 # end-sanitize-r5900
813 rom68k) # CYGNUS LOCAL
814 basic_machine=m68k-rom68k
815 os=-coff
817 rm[46]00)
818 basic_machine=mips-siemens
820 rtpc | rtpc-*)
821 basic_machine=romp-ibm
823 sa29200) # CYGNUS LOCAL
824 basic_machine=a29k-amd
825 os=-udi
827 sequent)
828 basic_machine=i386-sequent
831 basic_machine=sh-hitachi
832 os=-hms
834 sparclite-wrs) # CYGNUS LOCAL
835 basic_machine=sparclite-wrs
836 os=-vxworks
838 sps7)
839 basic_machine=m68k-bull
840 os=-sysv2
842 spur)
843 basic_machine=spur-unknown
845 st2000) # CYGNUS LOCAL
846 basic_machine=m68k-tandem
848 stratus) # CYGNUS LOCAL
849 basic_machine=i860-stratus
850 os=-sysv4
852 sun2)
853 basic_machine=m68000-sun
855 sun2os3)
856 basic_machine=m68000-sun
857 os=-sunos3
859 sun2os4)
860 basic_machine=m68000-sun
861 os=-sunos4
863 sun3os3)
864 basic_machine=m68k-sun
865 os=-sunos3
867 sun3os4)
868 basic_machine=m68k-sun
869 os=-sunos4
871 sun4os3)
872 basic_machine=sparc-sun
873 os=-sunos3
875 sun4os4)
876 basic_machine=sparc-sun
877 os=-sunos4
879 sun4sol2)
880 basic_machine=sparc-sun
881 os=-solaris2
883 sun3 | sun3-*)
884 basic_machine=m68k-sun
886 sun4)
887 basic_machine=sparc-sun
889 sun386 | sun386i | roadrunner)
890 basic_machine=i386-sun
892 symmetry)
893 basic_machine=i386-sequent
894 os=-dynix
896 # start-sanitize-tx19
897 tx19)
898 basic_machine=mipstx19-unknown
900 tx19el)
901 basic_machine=mipstx19el-unknown
903 # end-sanitize-tx19
904 tx39)
905 basic_machine=mipstx39-unknown
907 tx39el)
908 basic_machine=mipstx39el-unknown
910 tower | tower-32)
911 basic_machine=m68k-ncr
913 udi29k)
914 basic_machine=a29k-amd
915 os=-udi
917 ultra3)
918 basic_machine=a29k-nyu
919 os=-sym1
921 v810 | necv810) # CYGNUS LOCAL
922 basic_machine=v810-nec
923 os=-none
925 vaxv)
926 basic_machine=vax-dec
927 os=-sysv
929 vms)
930 basic_machine=vax-dec
931 os=-vms
933 vpp*|vx|vx-*)
934 basic_machine=f301-fujitsu
936 vxworks960)
937 basic_machine=i960-wrs
938 os=-vxworks
940 vxworks68)
941 basic_machine=m68k-wrs
942 os=-vxworks
944 vxworks29k)
945 basic_machine=a29k-wrs
946 os=-vxworks
948 w65*) # CYGNUS LOCAL
949 basic_machine=w65-wdc
950 os=-none
952 xmp)
953 basic_machine=xmp-cray
954 os=-unicos
956 xps | xps100)
957 basic_machine=xps100-honeywell
959 z8k-*-coff) # CYGNUS LOCAL
960 basic_machine=z8k-unknown
961 os=-sim
963 none)
964 basic_machine=none-none
965 os=-none
968 # Here we handle the default manufacturer of certain CPU types. It is in
969 # some cases the only manufacturer, in others, it is the most popular.
970 w89k) # CYGNUS LOCAL
971 basic_machine=hppa1.1-winbond
973 op50n) # CYGNUS LOCAL
974 basic_machine=hppa1.1-oki
976 op60c) # CYGNUS LOCAL
977 basic_machine=hppa1.1-oki
979 mips)
980 if [ x$os = x-linux-gnu ]; then
981 basic_machine=mips-unknown
982 else
983 basic_machine=mips-mips
986 romp)
987 basic_machine=romp-ibm
989 rs6000)
990 basic_machine=rs6000-ibm
992 vax)
993 basic_machine=vax-dec
995 pdp11)
996 basic_machine=pdp11-dec
998 we32k)
999 basic_machine=we32k-att
1001 sparc | sparcv9)
1002 basic_machine=sparc-sun
1004 cydra)
1005 basic_machine=cydra-cydrome
1007 orion)
1008 basic_machine=orion-highlevel
1010 orion105)
1011 basic_machine=clipper-highlevel
1013 mac | mpw | mac-mpw) # CYGNUS LOCAL
1014 basic_machine=m68k-apple
1016 pmac | pmac-mpw) # CYGNUS LOCAL
1017 basic_machine=powerpc-apple
1019 c4x*)
1020 basic_machine=c4x-none
1021 os=-coff
1024 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
1025 exit 1
1027 esac
1029 # Here we canonicalize certain aliases for manufacturers.
1030 case $basic_machine in
1031 *-digital*)
1032 basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
1034 *-commodore*)
1035 basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
1039 esac
1041 # Decode manufacturer-specific aliases for certain operating systems.
1043 if [ x"$os" != x"" ]
1044 then
1045 case $os in
1046 # First match some system type aliases
1047 # that might get confused with valid system types.
1048 # -solaris* is a basic system type, with this one exception.
1049 -solaris1 | -solaris1.*)
1050 os=`echo $os | sed -e 's|solaris1|sunos4|'`
1052 -solaris)
1053 os=-solaris2
1055 -svr4*)
1056 os=-sysv4
1058 -unixware*)
1059 os=-sysv4.2uw
1061 -gnu/linux*)
1062 os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
1064 # First accept the basic system types.
1065 # The portable systems comes first.
1066 # Each alternative MUST END IN A *, to match a version number.
1067 # -sysv* is not here because it comes later, after sysvr4.
1068 -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
1069 | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\
1070 | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \
1071 | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \
1072 | -aos* \
1073 | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
1074 | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
1075 | -hiux* | -386bsd* | -netbsd* | -openbsd* | -freebsd* | -riscix* \
1076 | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* \
1077 | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
1078 | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
1079 | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
1080 | -mingw32* | -linux-gnu* | -uxpv* | -beos* | -mpeix* | -udk*)
1081 # Remember, each alternative MUST END IN *, to match a version number.
1083 # CYGNUS LOCAL
1084 -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \
1085 | -windows* | -osx | -abug | -netware* | -os9* | -beos* \
1086 | -macos* | -mpw* | -magic* | -mon960* | -lnews* )
1088 -mac*)
1089 os=`echo $os | sed -e 's|mac|macos|'`
1091 # END CYGNUS LOCAL
1092 -linux*)
1093 os=`echo $os | sed -e 's|linux|linux-gnu|'`
1095 -sunos5*)
1096 os=`echo $os | sed -e 's|sunos5|solaris2|'`
1098 -sunos6*)
1099 os=`echo $os | sed -e 's|sunos6|solaris3|'`
1101 -osfrose*)
1102 os=-osfrose
1104 -osf*)
1105 os=-osf
1107 -utek*)
1108 os=-bsd
1110 -dynix*)
1111 os=-bsd
1113 -acis*)
1114 os=-aos
1116 -386bsd) # CYGNUS LOCAL
1117 os=-bsd
1119 -ctix* | -uts*)
1120 os=-sysv
1122 -ns2 )
1123 os=-nextstep2
1125 # Preserve the version number of sinix5.
1126 -sinix5.*)
1127 os=`echo $os | sed -e 's|sinix|sysv|'`
1129 -sinix*)
1130 os=-sysv4
1132 -triton*)
1133 os=-sysv3
1135 -oss*)
1136 os=-sysv3
1138 -svr4)
1139 os=-sysv4
1141 -svr3)
1142 os=-sysv3
1144 -sysvr4)
1145 os=-sysv4
1147 # This must come after -sysvr4.
1148 -sysv*)
1150 -ose*) # CYGNUS LOCAL
1151 os=-ose
1153 -es1800*) # CYGNUS LOCAL
1154 os=-ose
1156 -xenix)
1157 os=-xenix
1159 -none)
1162 # Get rid of the `-' at the beginning of $os.
1163 os=`echo $os | sed 's/[^-]*-//'`
1164 echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2
1165 exit 1
1167 esac
1168 else
1170 # Here we handle the default operating systems that come with various machines.
1171 # The value should be what the vendor currently ships out the door with their
1172 # machine or put another way, the most popular os provided with the machine.
1174 # Note that if you're going to try to match "-MANUFACTURER" here (say,
1175 # "-sun"), then you have to tell the case statement up towards the top
1176 # that MANUFACTURER isn't an operating system. Otherwise, code above
1177 # will signal an error saying that MANUFACTURER isn't an operating
1178 # system, and we'll never get to this point.
1180 case $basic_machine in
1181 *-acorn)
1182 os=-riscix1.2
1184 arm*-semi)
1185 os=-aout
1187 pdp11-*)
1188 os=-none
1190 *-dec | vax-*)
1191 os=-ultrix4.2
1193 m68*-apollo)
1194 os=-domain
1196 i386-sun)
1197 os=-sunos4.0.2
1199 m68000-sun)
1200 os=-sunos3
1201 # This also exists in the configure program, but was not the
1202 # default.
1203 # os=-sunos4
1205 m68*-cisco) # CYGNUS LOCAL
1206 os=-aout
1208 mips*-cisco) # CYGNUS LOCAL
1209 os=-elf
1211 mips*-*) # CYGNUS LOCAL
1212 os=-elf
1214 *-tti) # must be before sparc entry or we get the wrong os.
1215 os=-sysv3
1217 sparc-* | *-sun)
1218 os=-sunos4.1.1
1220 *-be)
1221 os=-beos
1223 *-ibm)
1224 os=-aix
1226 *-wec) # CYGNUS LOCAL
1227 os=-proelf
1229 *-winbond) # CYGNUS LOCAL
1230 os=-proelf
1232 *-oki) # CYGNUS LOCAL
1233 os=-proelf
1235 *-hp)
1236 os=-hpux
1238 *-hitachi)
1239 os=-hiux
1241 i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent)
1242 os=-sysv
1244 *-cbm)
1245 os=-amigaos
1247 *-dg)
1248 os=-dgux
1250 *-dolphin)
1251 os=-sysv3
1253 m68k-ccur)
1254 os=-rtu
1256 m88k-omron*)
1257 os=-luna
1259 *-next )
1260 os=-nextstep
1262 *-sequent)
1263 os=-ptx
1265 *-crds)
1266 os=-unos
1268 *-ns)
1269 os=-genix
1271 i370-*)
1272 os=-mvs
1274 *-next)
1275 os=-nextstep3
1277 *-gould)
1278 os=-sysv
1280 *-highlevel)
1281 os=-bsd
1283 *-encore)
1284 os=-bsd
1286 *-sgi)
1287 os=-irix
1289 *-siemens)
1290 os=-sysv4
1292 *-masscomp)
1293 os=-rtu
1295 f301-fujitsu)
1296 os=-uxpv
1298 *-rom68k) # CYGNUS LOCAL
1299 os=-coff
1301 *-*bug) # CYGNUS LOCAL
1302 os=-coff
1304 *-apple) # CYGNUS LOCAL
1305 os=-macos
1308 os=-none
1310 esac
1313 # Here we handle the case where we know the os, and the CPU type, but not the
1314 # manufacturer. We pick the logical manufacturer.
1315 vendor=unknown
1316 case $basic_machine in
1317 *-unknown)
1318 case $os in
1319 -riscix*)
1320 vendor=acorn
1322 -sunos*)
1323 vendor=sun
1325 -aix*)
1326 vendor=ibm
1328 -beos*)
1329 vendor=be
1331 -hpux*)
1332 vendor=hp
1334 -mpeix*)
1335 vendor=hp
1337 -hiux*)
1338 vendor=hitachi
1340 -unos*)
1341 vendor=crds
1343 -dgux*)
1344 vendor=dg
1346 -luna*)
1347 vendor=omron
1349 -genix*)
1350 vendor=ns
1352 -mvs*)
1353 vendor=ibm
1355 -ptx*)
1356 vendor=sequent
1358 -vxsim* | -vxworks*)
1359 vendor=wrs
1361 -aux*)
1362 vendor=apple
1364 -hms*) # CYGNUS LOCAL
1365 vendor=hitachi
1367 -mpw* | -macos*) # CYGNUS LOCAL
1368 vendor=apple
1370 esac
1371 basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
1373 esac
1375 echo $basic_machine$os