OSDN Git Service

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