698f742b38aff171594936685e5dde1bfa79eeb2
[platform/upstream/bash.git] / support / config.guess
1 #! /bin/sh
2 # Attempt to guess a canonical system name.
3 #   Copyright (C) 1992, 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
4 #
5 # This file is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 #
19 # As a special exception to the GNU General Public License, if you
20 # distribute this file as part of a program that contains a
21 # configuration script generated by Autoconf, you may include it under
22 # the same distribution terms that you use for the rest of that program.
23
24 # Written by Per Bothner <bothner@cygnus.com>.
25 # The master version of this file is at the FSF in /home/gd/gnu/lib.
26 #
27 # This script attempts to guess a canonical system name similar to
28 # config.sub.  If it succeeds, it prints the system name on stdout, and
29 # exits with 0.  Otherwise, it exits with 1.
30 #
31 # The plan is that this can be called by configure scripts if you
32 # don't specify an explicit system type (host/target name).
33 #
34 # Only a few systems have been added to this list; please add others
35 # (but try to keep the structure clean).
36 #
37
38 # This is needed to find uname on a Pyramid OSx when run in the BSD universe.
39 # (ghazi@noc.rutgers.edu 8/24/94.)
40 if (test -f /.attbin/uname) >/dev/null 2>&1 ; then
41         PATH=$PATH:/.attbin ; export PATH
42 elif (test -f /usr/5bin/uname) >/dev/null 2>&1 ; then
43         PATH=$PATH:/usr/5bin
44 fi
45
46 UNAME=`(uname) 2>/dev/null` || UNAME=unknown
47 UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown
48 UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown
49 UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown
50 UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
51
52 RELEASE=`expr "$UNAME_RELEASE" : '[^0-9]*\([0-9]*\)'` # 4
53 case "$RELEASE" in
54 "")     RELEASE=0 ;;
55 *)      RELEASE=`expr "$RELEASE" + 0` ;;
56 esac
57 REL_LEVEL=`expr "$UNAME_RELEASE" : '[^0-9]*[0-9]*.\([0-9]*\)'`    # 1
58 REL_SUBLEVEL=`expr "$UNAME_RELEASE" : '[^0-9]*[0-9]*.[0-9]*.\([0-9]*\)'` # 2
59
60 trap 'rm -f dummy.c dummy.o dummy; exit 1' 1 2 15
61
62 # Some versions of i386 SVR4.2 make `uname' equivalent to `uname -n', which
63 # is contrary to all other versions of uname
64 if [ -n "$UNAME" ] && [ "$UNAME_S" != "$UNAME" ] && [ "$UNAME_S" = UNIX_SV ]; then
65         UNAME=UNIX_SV
66 fi
67
68 # Note: order is significant - the case branches are not exclusive.
69
70 case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
71     # Begin cases added for Bash
72     alpha:NetBSD:*:*)
73         echo alpha-dec-netbsd${UNAME_RELEASE}
74         exit 0 ;;
75     alpha:OpenBSD:*:*)
76         echo alpha-dec-openbsd${UNAME_RELEASE}
77         exit 0 ;;
78     i?86:NetBSD:*:*)
79         echo ${UNAME_MACHINE}-pc-netbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
80         exit 0 ;;
81     i?86:OpenBSD:*:*)
82         echo ${UNAME_MACHINE}-pc-openbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
83         exit 0 ;;
84     i?86:FreeBSD:*:*)
85         echo ${UNAME_MACHINE}-pc-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
86         exit 0 ;;
87     sparc:NetBSD:*:*)
88         echo sparc-unknown-netbsd${UNAME_RELEASE}
89         exit 0 ;;
90     sparc:OpenBSD:*:*)
91         echo sparc-unknown-openbsd${UNAME_RELEASE}
92         exit 0 ;;
93     vax:NetBSD:*:*)
94         echo vax-dec-netbsd${UNAME_RELEASE}
95         exit 0 ;;
96     vax:OpenBSD:*:*)
97         echo vax-dec-openbsd${UNAME_RELEASE}
98         exit 0 ;;
99     mac68k:machten:*:*)
100         echo mac68k-apple-machten${UNAME_RELEASE}
101         exit 0 ;;
102     concurrent*:*:*:*)
103         if test "`(/bin/universe) 2>/dev/null`" = att ; then
104                 echo concurrent-concurrent-sysv3
105         else
106                 echo concurrent-concurrent-bsd
107         fi
108         exit 0 ;;
109     ppc*:SunOS:5.*:*)
110         echo ppc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
111         exit 0 ;;
112     sparc:UNIX_SV:4.*:*)
113         echo sparc-unknown-sysv${UNAME_RELEASE}
114         exit 0 ;;
115     mips:UNIX_SV:4.*:*)
116         echo mips-mips-sysv${UNAME_RELEASE}
117         exit 0 ;;
118     mips:OSF*1:*:*)
119         echo mips-mips-osf1
120         exit 0 ;;
121     mips:4.4BSD:*:*)
122         echo mips-mips-bsd4.4
123         exit 0 ;;
124     MIServer-S:SMP_DC.OSx:*:dcosx)
125         echo mips-pyramid-sysv4
126         exit 0 ;;
127     news*:NEWS*:*:*)
128         echo mips-sony-newsos${UNAME_RELEASE}
129         exit 0 ;;
130     i?86:NEXTSTEP:*:*)
131         echo i386-next-nextstep${RELEASE}
132         exit 0 ;;
133     *680?0:NEXTSTEP:*:*)
134         echo m68k-next-nextstep${RELEASE}
135         exit 0 ;;    
136     *370:AIX:*:*)
137         echo ibm370-ibm-aix
138         exit 0 ;;
139     ksr1:OSF*1:*:*)
140         echo ksr1-ksr-osf1
141         exit 0 ;;
142     esa:OSF*1:*:* | ESA:OSF*:*:*)
143         echo esa-ibm-osf1
144         exit 0 ;;
145     DNP*:DNIX:*:*)
146         echo m68k-dnix-sysv
147         exit 0 ;;
148     *3b2*:*:*:*)
149         echo we32k-att-sysv3
150         exit 0 ;;
151     *:QNX:*:42*)
152         echo i386-qssl-qnx`echo ${UNAME_VERSION}`
153         exit 0 ;;
154     # end cases added for Bash
155     alpha:OSF1:*:*)
156         # A Vn.n version is a released version.
157         # A Tn.n version is a released field test version.
158         # A Xn.n version is an unreleased experimental baselevel.
159         # 1.2 uses "1.2" for uname -r.
160         echo alpha-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VTX]//'`
161         exit 0 ;;
162     21064:Windows_NT:50:3)
163         echo alpha-dec-winnt3.5
164         exit 0 ;;
165     Amiga*:UNIX_System_V:4.0:*)
166         echo m68k-cbm-sysv4
167         exit 0;;
168     amiga:NetBSD:*:*)
169         echo m68k-cbm-netbsd${UNAME_RELEASE}
170         exit 0 ;;
171     amiga:OpenBSD:*:*)
172         echo m68k-cbm-openbsd${UNAME_RELEASE}
173         exit 0 ;;
174     arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*)
175         echo arm-acorn-riscix${UNAME_RELEASE}
176         exit 0;;
177     Pyramid*:OSx*:*:*|MIS*:OSx*:*:*)
178         # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE.
179         if test "`(/bin/universe) 2>/dev/null`" = att ; then
180                 echo pyramid-pyramid-sysv3
181         else
182                 echo pyramid-pyramid-bsd
183         fi
184         exit 0 ;;
185     NILE:*:*:dcosx)
186         echo pyramid-pyramid-svr4
187         exit 0 ;;
188     sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
189         echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
190         exit 0 ;;
191     i86pc:SunOS:5.*:*)
192         echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
193         exit 0 ;;
194     sun4*:SunOS:6*:*)
195         # According to config.sub, this is the proper way to canonicalize
196         # SunOS6.  Hard to guess exactly what SunOS6 will be like, but
197         # it's likely to be more like Solaris than SunOS4.
198         echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
199         exit 0 ;;
200     sun4*:SunOS:*:*)
201         case "`/usr/bin/arch -k`" in
202             Series*|S4*)
203                 UNAME_RELEASE=`uname -v`
204                 ;;
205         esac
206         # Japanese Language versions have a version number like `4.1.3-JL'.
207         echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'`
208         exit 0 ;;
209     sun3*:SunOS:*:*|sun:SunOS:*:*)
210         echo m68k-sun-sunos${UNAME_RELEASE}
211         exit 0 ;;
212     aushp:SunOS:*:*)
213         echo sparc-auspex-sunos${UNAME_RELEASE}
214         exit 0 ;;
215     atari*:NetBSD:*:*)
216         echo m68k-atari-netbsd${UNAME_RELEASE}
217         exit 0 ;;
218     atari*:OpenBSD:*:*)
219         echo m68k-atari-openbsd${UNAME_RELEASE}
220         exit 0 ;;
221     sun3*:NetBSD:*:*)
222         echo m68k-sun-netbsd${UNAME_RELEASE}
223         exit 0 ;;
224     sun3*:OpenBSD:*:*)
225         echo m68k-sun-openbsd${UNAME_RELEASE}
226         exit 0 ;;
227     mac68k:NetBSD:*:*)
228         echo m68k-apple-netbsd${UNAME_RELEASE}
229         exit 0 ;;
230     mac68k:OpenBSD:*:*)
231         echo m68k-apple-openbsd${UNAME_RELEASE}
232         exit 0 ;;
233     powerpc:machten:*:*)
234         echo powerpc-apple-machten${UNAME_RELEASE}
235         exit 0 ;;
236     RISC*:Mach:*:*)
237         echo mips-dec-mach_bsd4.3
238         exit 0 ;;
239     RISC*:ULTRIX:*:*)
240         echo mips-dec-ultrix${UNAME_RELEASE}
241         exit 0 ;;
242     VAX*:ULTRIX*:*:*)
243         echo vax-dec-ultrix${UNAME_RELEASE}
244         exit 0 ;;
245     mips:*:*:UMIPS | mips:*:*:RISCos)
246         sed 's/^        //' << EOF >dummy.c
247         int main (argc, argv) int argc; char **argv; {
248         #if defined (host_mips) && defined (MIPSEB)
249         #if defined (SYSTYPE_SYSV)
250           printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0);
251         #endif
252         #if defined (SYSTYPE_SVR4)
253           printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0);
254         #endif
255         #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD)
256           printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0);
257         #endif
258         #endif
259           exit (-1);
260         }
261 EOF
262         ${CC-cc} dummy.c -o dummy \
263           && ./dummy `echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` \
264           && rm dummy.c dummy && exit 0
265         rm -f dummy.c dummy
266         echo mips-mips-riscos${UNAME_RELEASE}
267         exit 0 ;;
268     Night_Hawk:Power_UNIX:*:*)
269         echo powerpc-harris-powerux
270         exit 0 ;;
271     m88k:CX/UX:7*:*)
272         echo m88k-harris-cxux7
273         exit 0 ;;
274     m88k:*:4*:R4*)
275         echo m88k-motorola-sysv4
276         exit 0 ;;
277     m88k:*:3*:R3*)
278         echo m88k-motorola-sysv3
279         exit 0 ;;
280     AViiON:dgux:*:*)
281         # DG/UX returns AViiON for all architectures
282         UNAME_PROCESSOR=`/usr/bin/uname -p`
283         if [ $UNAME_PROCESSOR = mc88100 -o $UNAME_PROCESSOR = mc88110 ] ; then
284         if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx \
285              -o ${TARGET_BINARY_INTERFACE}x = x ] ; then
286                 echo m88k-dg-dgux${UNAME_RELEASE}
287         else
288                 echo m88k-dg-dguxbcs${UNAME_RELEASE}
289         fi
290         else echo i586-dg-dgux${UNAME_RELEASE}
291         fi
292         exit 0 ;;
293     M88*:DolphinOS:*:*) # DolphinOS (SVR3)
294         echo m88k-dolphin-sysv3
295         exit 0 ;;
296     M88*:*:R3*:*)
297         # Delta 88k system running SVR3
298         echo m88k-motorola-sysv3
299         exit 0 ;;
300     XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3)
301         echo m88k-tektronix-sysv3
302         exit 0 ;;
303     Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD)
304         echo m68k-tektronix-bsd
305         exit 0 ;;
306     *:IRIX*:*:*)
307         echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'`
308         exit 0 ;;
309     ????????:AIX?:[12].1:2)   # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX.
310         echo romp-ibm-aix      # uname -m gives an 8 hex-code CPU id
311         exit 0 ;;              # Note that: echo "'`uname -s`'" gives 'AIX '
312     i?86:AIX:*:*)
313         echo i386-ibm-aix
314         exit 0 ;;
315     *:AIX:2:3)
316         if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then
317                 sed 's/^                //' << EOF >dummy.c
318                 #include <sys/systemcfg.h>
319
320                 main()
321                         {
322                         if (!__power_pc())
323                                 exit(1);
324                         puts("powerpc-ibm-aix3.2.5");
325                         exit(0);
326                         }
327 EOF
328                 ${CC-cc} dummy.c -o dummy && ./dummy && rm dummy.c dummy && exit 0
329                 rm -f dummy.c dummy
330                 echo rs6000-ibm-aix3.2.5
331         elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then
332                 echo rs6000-ibm-aix3.2.4
333         else
334                 echo rs6000-ibm-aix3.2
335         fi
336         exit 0 ;;
337     *:AIX:*:4)
338         if /usr/sbin/lsattr -EHl proc0 | grep POWER >/dev/null 2>&1; then
339                 IBM_ARCH=rs6000
340         else
341                 IBM_ARCH=powerpc
342         fi
343         if [ -x /usr/bin/oslevel ] ; then
344                 IBM_REV=`/usr/bin/oslevel`
345         elif grep bos410 /usr/include/stdio.h >/dev/null 2>&1; then
346                 IBM_REV=4.1
347         elif grep bos411 /usr/include/stdio.h >/dev/null 2>&1; then
348                 IBM_REV=4.1.1
349         else
350                 IBM_REV=4.${UNAME_RELEASE}
351         fi
352         echo ${IBM_ARCH}-ibm-aix${IBM_REV}
353         exit 0 ;;
354     *:AIX:*:*)
355         echo rs6000-ibm-aix
356         exit 0 ;;
357     ibmrt:4.4BSD:*|romp-ibm:BSD:*)
358         echo romp-ibm-bsd4.4
359         exit 0 ;;
360     ibmrt:*BSD:*|romp-ibm:BSD:*)            # covers RT/PC NetBSD and
361         echo romp-ibm-bsd${UNAME_RELEASE}   # 4.3 with uname added to
362         exit 0 ;;                           # report: romp-ibm BSD 4.3
363     *:BOSX:*:*)
364         echo rs6000-bull-bosx
365         exit 0 ;;
366     DPX/2?00:B.O.S.:*:*)
367         echo m68k-bull-sysv3
368         exit 0 ;;
369     9000/[34]??:4.3bsd:1.*:*)
370         echo m68k-hp-bsd
371         exit 0 ;;
372     hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*)
373         echo m68k-hp-bsd4.4
374         exit 0 ;;
375     9000/[34678]??:HP-UX:*:*)
376         case "${UNAME_MACHINE}" in
377             9000/31? )          HP_ARCH=m68000 ;;
378             9000/[34]?? )       HP_ARCH=m68k ;;
379             9000/78? | 9000/80[24] | 9000/8[67]1 | 9000/8[78]9 | 9000/893 )
380                                 HP_ARCH=hppa2.0 ;;
381             9000/7?? | 9000/8?[13679] | 9000/892 )
382                                 HP_ARCH=hppa1.1 ;;
383             9000/[68]?? )       HP_ARCH=hppa1.0 ;;
384         esac
385         HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
386         echo ${HP_ARCH}-hp-hpux${HPUX_REV}
387         exit 0 ;;
388     3050*:HI-UX:*:*)
389         sed 's/^        //' << EOF >dummy.c
390         #include <unistd.h>
391         int
392         main ()
393         {
394           long cpu = sysconf (_SC_CPU_VERSION);
395           /* The order matters, because CPU_IS_HP_MC68K erroneously returns
396              true for CPU_PA_RISC1_0.  CPU_IS_PA_RISC returns correct
397              results, however.  */
398           if (CPU_IS_PA_RISC (cpu))
399             {
400               switch (cpu)
401                 {
402                   case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break;
403                   case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break;
404                   case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break;
405                   default: puts ("hppa-hitachi-hiuxwe2"); break;
406                 }
407             }
408           else if (CPU_IS_HP_MC68K (cpu))
409             puts ("m68k-hitachi-hiuxwe2");
410           else puts ("unknown-hitachi-hiuxwe2");
411           exit (0);
412         }
413 EOF
414         ${CC-cc} dummy.c -o dummy && ./dummy && rm dummy.c dummy && exit 0
415         rm -f dummy.c dummy
416         echo unknown-hitachi-hiuxwe2
417         exit 0 ;;
418     9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* )
419         echo hppa1.1-hp-bsd
420         exit 0 ;;
421     9000/8??:4.3bsd:*:*)
422         echo hppa1.0-hp-bsd
423         exit 0 ;;
424     hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* )
425         echo hppa1.1-hp-osf
426         exit 0 ;;
427     hp8??:OSF1:*:*)
428         echo hppa1.0-hp-osf
429         exit 0 ;;
430     i?86:OSF1:*:*)
431         if [ -x /usr/sbin/sysversion ] ; then
432             echo ${UNAME_MACHINE}-pc-osf1mk
433         else
434             echo ${UNAME_MACHINE}-pc-osf1
435         fi
436         exit 0 ;;
437     parisc*:Lites*:*:*)
438         echo hppa1.1-hp-lites
439         exit 0 ;;
440     C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)
441         echo c1-convex-bsd
442         exit 0 ;;
443     C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*)
444         if getsysinfo -f scalar_acc
445         then echo c32-convex-bsd
446         else echo c2-convex-bsd
447         fi
448         exit 0 ;;
449     C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*)
450         echo c34-convex-bsd
451         exit 0 ;;
452     C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*)
453         echo c38-convex-bsd
454         exit 0 ;;
455     C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*)
456         echo c4-convex-bsd
457         exit 0 ;;
458     CRAY*X-MP:*:*:*)
459         echo xmp-cray-unicos
460         exit 0 ;;
461     CRAY*Y-MP:*:*:*)
462         echo ymp-cray-unicos${UNAME_RELEASE}
463         exit 0 ;;
464     CRAY*[A-Z]90:*:*:*)
465         echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \
466         | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \
467               -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/
468         exit 0 ;;
469     CRAY*TS:*:*:*)
470         echo t90-cray-unicos${UNAME_RELEASE}
471         exit 0 ;;
472     CRAY-2:*:*:*)
473         echo cray2-cray-unicos
474         exit 0 ;;
475     F300:UNIX_System_V:*:*)
476         FUJITSU_SYS=`uname -p | tr [A-Z] [a-z] | sed -e 's/\///'`
477         FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`
478         echo "f300-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
479         exit 0 ;;
480     F301:UNIX_System_V:*:*)
481         echo f301-fujitsu-uxpv`echo $UNAME_RELEASE | sed 's/ .*//'`
482         exit 0 ;;
483     hp3[0-9][05]:NetBSD:*:*)
484         echo m68k-hp-netbsd${UNAME_RELEASE}
485         exit 0 ;;
486     hp3[0-9][05]:OpenBSD:*:*)
487         echo m68k-hp-openbsd${UNAME_RELEASE}
488         exit 0 ;;
489     i?86:BSD/386:*:* | *:BSD/OS:*:*)
490         echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE}
491         exit 0 ;;
492     *:FreeBSD:*:*)
493         echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
494         exit 0 ;;
495     *:NetBSD:*:*)
496         echo ${UNAME_MACHINE}-unknown-netbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
497         exit 0 ;;
498     *:OpenBSD:*:*)
499         echo ${UNAME_MACHINE}-unknown-openbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
500         exit 0 ;;
501     i*:CYGWIN*:*)
502         echo i386-pc-cygwin32
503         exit 0 ;;
504     p*:CYGWIN*:*)
505         echo powerpcle-unknown-cygwin32
506         exit 0 ;;
507     prep*:SunOS:5.*:*)
508         echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
509         exit 0 ;;
510     *:GNU:*:*)
511         echo `echo ${UNAME_MACHINE}|sed -e 's,/.*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
512         exit 0 ;;
513     *:Linux:*:*)
514         # The BFD linker knows what the default object file format is, so
515         # first see if it will tell us.
516         ld_help_string=`ld --help 2>&1`
517         if echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: elf_i.86"; then
518           echo "${UNAME_MACHINE}-pc-linux-gnu" ; exit 0
519         elif echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: i.86linux"; then
520           echo "${UNAME_MACHINE}-pc-linux-gnuaout" ; exit 0
521         elif echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: i.86coff"; then
522           echo "${UNAME_MACHINE}-pc-linux-gnucoff" ; exit 0
523         elif echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: m68kelf"; then
524           echo "${UNAME_MACHINE}-unknown-linux-gnu" ; exit 0
525         elif echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: m68klinux"; then
526           echo "${UNAME_MACHINE}-unknown-linux-gnuaout" ; exit 0
527         elif echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: elf32ppc"; then
528           echo "powerpc-unknown-linux-gnu" ; exit 0
529         elif test "${UNAME_MACHINE}" = "alpha" ; then
530           echo alpha-unknown-linux-gnu ; exit 0
531         elif test "${UNAME_MACHINE}" = "sparc" ; then
532           echo sparc-unknown-linux-gnu ; exit 0
533         else
534           # Either a pre-BFD a.out linker (linux-gnuoldld) or one that does not give us
535           # useful --help.  Gcc wants to distinguish between linux-gnuoldld and linux-gnuaout.
536           test ! -d /usr/lib/ldscripts/. \
537             && echo "${UNAME_MACHINE}-pc-linux-gnuoldld" && exit 0
538           # Determine whether the default compiler is a.out or elf
539           cat >dummy.c <<EOF
540 main(argc, argv)
541 int argc;
542 char *argv[];
543 {
544 #ifdef __ELF__
545   printf ("%s-pc-linux-gnu\n", argv[1]);
546 #else
547   printf ("%s-pc-linux-gnuaout\n", argv[1]);
548 #endif
549   return 0;
550 }
551 EOF
552           ${CC-cc} dummy.c -o dummy 2>/dev/null && ./dummy "${UNAME_MACHINE}" && rm dummy.c dummy && exit 0
553           rm -f dummy.c dummy
554         fi ;;
555 # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.  earlier versions
556 # are messed up and put the nodename in both sysname and nodename.
557     i?86:DYNIX/ptx:4*:*)
558         echo i386-sequent-sysv4
559         exit 0 ;;
560     i?86:*:4.*:* | i?86:SYSTEM_V:4.*:* | i[34]86:UNIX_SV:4.*:*)
561         if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
562                 echo ${UNAME_MACHINE}-univel-sysv${UNAME_RELEASE}
563         else
564                 echo ${UNAME_MACHINE}-pc-sysv${UNAME_RELEASE}
565         fi
566         exit 0 ;;
567     i?86:*:3.2:*)
568         if test -f /usr/options/cb.name; then
569                 UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name`
570                 echo ${UNAME_MACHINE}-pc-isc$UNAME_REL
571         elif /bin/uname -X 2>/dev/null >/dev/null ; then
572                 UNAME_REL=`(/bin/uname -X|egrep Release|sed -e 's/.*= //')`
573                 (/bin/uname -X|egrep i80486 >/dev/null) && UNAME_MACHINE=i486
574                 (/bin/uname -X|egrep '^Machine.*Pentium' >/dev/null) \
575                         && UNAME_MACHINE=i586
576                 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL
577         else
578                 echo ${UNAME_MACHINE}-pc-sysv32
579         fi
580         exit 0 ;;
581     Intel:Mach:3*:*)
582         echo i386-pc-mach3
583         exit 0 ;;
584     paragon:*:*:*)
585         echo i860-intel-osf1
586         exit 0 ;;
587     i860:*:4.*:*) # i860-SVR4
588         if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then
589           echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4
590         else # Add other i860-SVR4 vendors below as they are discovered.
591           echo i860-unknown-sysv${UNAME_RELEASE}  # Unknown i860-SVR4
592         fi
593         exit 0 ;;
594     mini*:CTIX:SYS*5:*)
595         # "miniframe"
596         echo m68010-convergent-sysv
597         exit 0 ;;
598     M68*:*:R3V[567]*:*)
599         test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;;
600     3[34]??:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 4850:*:4.0:3.0)
601         OS_REL=''
602         test -r /etc/.relid \
603         && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
604         /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
605           && echo i486-ncr-sysv4.3${OS_REL} && exit 0
606         /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
607           && echo i586-ncr-sysv4.3${OS_REL} && exit 0 ;;
608     3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
609         /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
610           && echo i486-ncr-sysv4 && exit 0 ;;
611     mc68030:UNIX_System_V:4.*:*)
612         echo m68k-atari-sysv4
613         exit 0 ;;
614     m68*:LynxOS:2.*:*)
615         echo m68k-unknown-lynxos${UNAME_RELEASE}
616         exit 0 ;;
617     i?86:LynxOS:2.*:*)
618         echo i386-pc-lynxos${UNAME_RELEASE}
619         exit 0 ;;
620     TSUNAMI:LynxOS:2.*:*)
621         echo sparc-unknown-lynxos${UNAME_RELEASE}
622         exit 0 ;;
623     rs6000:LynxOS:2.*:* | PowerPC:LynxOS:2.*:*)
624         echo rs6000-unknown-lynxos${UNAME_RELEASE}
625         exit 0 ;;
626     *:LynxOS:*:*)
627         echo ${UNAME_MACHINE}-unknown-lynxos${UNAME_RELEASE}
628         exit 0 ;;
629     SM[BE]S:UNIX_SV:*:*)
630         echo mips-dde-sysv${UNAME_RELEASE}
631         exit 0 ;;
632     RM*:SINIX-*:*:*)
633         echo mips-sni-sysv4
634         exit 0 ;;
635     *:SINIX-*:*:*)
636         if uname -p 2>/dev/null >/dev/null ; then
637                 UNAME_MACHINE=`(uname -p) 2>/dev/null`
638                 echo ${UNAME_MACHINE}-sni-sysv4
639         else
640                 echo ns32k-sni-sysv
641         fi
642         exit 0 ;;
643     *:UNIX_System_V:4*:FTX*)
644         # From Gerald Hewes <hewes@openmarket.com>.
645         # How about differentiating between stratus architectures? -djm
646         echo hppa1.1-stratus-sysv4
647         exit 0 ;;
648     *:*:*:FTX*)
649         # From seanf@swdc.stratus.com.
650         echo i860-stratus-sysv4
651         exit 0 ;;              
652     mc68*:A/UX:*:*)
653         echo m68k-apple-aux${UNAME_RELEASE}
654         exit 0 ;;
655     R3000:*System_V*:*:* | R4000:UNIX_SYSV:*:*)
656         if [ -d /usr/nec ]; then
657                 echo mips-nec-sysv${UNAME_RELEASE}
658         else
659                 echo mips-unknown-sysv${UNAME_RELEASE}
660         fi
661         exit 0 ;;
662     PENTIUM:CPunix:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort
663                            # says <Richard.M.Bartel@ccMail.Census.GOV>
664         echo i586-unisys-sysv4 
665         exit 0 ;;              
666 esac
667
668 #echo '(No uname command or uname output not recognized.)' 1>&2
669 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2
670
671 cat >dummy.c <<EOF
672 #ifdef _SEQUENT_
673 # include <sys/types.h>
674 # include <sys/utsname.h>
675 #endif
676 main ()
677 {
678 #if defined (sony)
679 #if defined (MIPSEB)
680   /* BFD wants "bsd" instead of "newsos".  Perhaps BFD should be changed,
681      I don't know....  */
682   printf ("mips-sony-bsd\n"); exit (0);
683 #else
684 #include <sys/param.h>
685   printf ("m68k-sony-newsos%s\n",
686 #ifdef NEWSOS4
687           "4"
688 #else
689           ""
690 #endif
691          ); exit (0);
692 #endif
693 #endif
694
695 #if defined (__arm) && defined (__acorn) && defined (__unix)
696   printf ("arm-acorn-riscix\n"); exit (0);
697 #endif
698
699 #if defined (hp9000) && !defined (hpux)
700   printf ("m68k-hp-bsd\n"); exit (0);
701 #endif
702
703 #if defined (hp300) && !defined (hpux)
704   printf ("m68k-hp-bsd\n"); exit (0);
705 #endif
706
707 #if defined (NeXT)
708 #if !defined (__ARCHITECTURE__)
709 #define __ARCHITECTURE__ "m68k"
710 #endif
711   int version;
712   version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`;
713   printf ("%s-next-nextstep%d\n", __ARCHITECTURE__,  version);
714   exit (0);
715 #endif
716
717 #if defined (MULTIMAX) || defined (n16)
718 #if defined (UMAXV)
719   printf ("ns32k-encore-sysv\n"); exit (0);
720 #else
721 #if defined (CMU)
722   printf ("ns32k-encore-mach\n"); exit (0);
723 #else
724   printf ("ns32k-encore-bsd\n"); exit (0);
725 #endif
726 #endif
727 #endif
728
729 #if defined (__386BSD__)
730   printf ("i386-pc-bsd\n"); exit (0);
731 #endif
732
733 #if defined (sequent)
734 #if defined (i386)
735   printf ("i386-sequent-dynix\n"); exit (0);
736 #endif
737 #if defined (ns32000)
738   printf ("ns32k-sequent-dynix\n"); exit (0);
739 #endif
740 #endif
741
742 #if defined (_SEQUENT_)
743     struct utsname un;
744
745     uname(&un);
746
747     if (strncmp(un.version, "V2", 2) == 0) {
748         printf ("i386-sequent-ptx2\n"); exit (0);
749     }
750     if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */
751         printf ("i386-sequent-ptx1\n"); exit (0);
752     }
753     printf ("i386-sequent-ptx\n"); exit (0);
754
755 #endif
756
757 #if defined (vax)
758 #if !defined (ultrix)
759   printf ("vax-dec-bsd\n"); exit (0);
760 #else
761   printf ("vax-dec-ultrix\n"); exit (0);
762 #endif
763 #endif
764
765 #if defined (alliant) && defined (i860)
766   printf ("i860-alliant-bsd\n"); exit (0);
767 #endif
768
769 /* Begin cases added for Bash */
770 #if defined (tahoe)
771   printf ("tahoe-cci-bsd\n"); exit (0);
772 #endif
773
774 #if defined (nec_ews)
775 #  if defined (SYSTYPE_SYSV)
776   printf ("ews4800-nec-sysv4\n"); exit 0;
777 #  else
778   printf ("ews4800-nec-bsd\n"); exit (0);
779 #  endif
780 #endif
781
782 #if defined (sony)
783 #  if defined (SYSTYPE_SYSV)
784   printf ("mips-sony-sysv4\n"); exit 0;
785 #  else
786   printf ("mips-sony-bsd\n"); exit (0);
787 #  endif
788 #endif
789
790 #if defined (ardent)
791   printf ("titan-ardent-bsd\n"); exit (0);
792 #endif
793
794 #if defined (stardent)
795   printf ("stardent-stardent-sysv\n"); exit (0);
796 #endif
797
798 #if defined (ibm032)
799   printf ("ibmrt-ibm-bsd4.3\n"); exit (0);
800 #endif
801
802 #if defined (sequent) && defined (i386)
803   printf ("i386-sequent-bsd\n"); exit (0);
804 #endif
805
806 #if defined (qnx) && defined (i386)
807   printf ("i386-pc-qnx\n"); exit (0);
808 #endif
809
810 #if defined (gould)
811   printf ("gould-gould-bsd\n"); exit (0);
812 #endif
813
814 #if defined (unixpc)
815   printf ("unixpc-att-sysv\n"); exit (0);
816 #endif
817
818 #if defined (att386)
819   printf ("i386-att-sysv3\n"); exit (0);
820 #endif
821
822 #if defined (__m88k) && defined (__UMAXV__)
823   printf ("m88k-encore-sysv3\n"); exit (0);
824 #endif
825
826 #if defined (drs6000)
827   printf ("drs6000-icl-sysv4.2\n"); exit (0);
828 #endif
829
830 #if defined (clipper)
831   printf ("clipper-orion-bsd\n"); exit (0);
832 #endif
833
834 #if defined (is68k)
835   printf ("m68k-isi-bsd\n"); exit (0);
836 #endif
837
838 #if defined (luna88k)
839   printf ("luna88k-omron-bsd\n"); exit (0);
840 #endif
841
842 #if defined (butterfly) && defined (BFLY1)
843   printf ("butterfly-bbn-mach\n"); exit (0);
844 #endif
845
846 #if defined (tower32)
847   printf ("tower32-ncr-sysv4\n"); exit (0);
848 #endif
849
850 #if defined (MagicStation)
851   printf ("magicstation-unknown-bsd\n"); exit (0);
852 #endif
853
854 #if defined (scs)
855   printf ("symmetric-scs-bsd4.2\n"); exit (0);
856 #endif
857
858 #if defined (tandem)
859   printf ("tandem-tandem-sysv\n"); exit (0);
860 #endif
861
862 #if defined (cadmus)
863   printf ("cadmus-pcs-sysv\n"); exit (0);
864 #endif
865
866 #if defined (masscomp)
867   printf ("masscomp-masscomp-sysv3\n"); exit (0);
868 #endif
869
870 #if defined (hbullx20)
871   printf ("hbullx20-bull-sysv3\n"); exit (0);
872 #endif
873
874 /* End cases added for Bash */
875
876   exit (1);
877 }
878 EOF
879
880 ${CC-cc} dummy.c -o dummy 2>/dev/null && ./dummy && rm dummy.c dummy && exit 0
881 rm -f dummy.c dummy
882
883 # Apollos put the system type in the environment.
884
885 test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit 0; }
886
887 # Convex versions that predate uname can use getsysinfo(1)
888
889 if [ -x /usr/convex/getsysinfo ]
890 then
891     case `getsysinfo -f cpu_type` in
892     c1*)
893         echo c1-convex-bsd
894         exit 0 ;;
895     c2*)
896         if getsysinfo -f scalar_acc
897         then echo c32-convex-bsd
898         else echo c2-convex-bsd
899         fi
900         exit 0 ;;
901     c34*)
902         echo c34-convex-bsd
903         exit 0 ;;
904     c38*)
905         echo c38-convex-bsd
906         exit 0 ;;
907     c4*)
908         echo c4-convex-bsd
909         exit 0 ;;
910     esac
911 fi
912
913 # Begin cases added for Bash
914 case "$UNAME" in
915 uts) echo uts-amdahl-sysv${UNAME_RELEASE}; exit 0 ;;
916 esac
917
918 if [ -d /usr/amiga ]; then
919         echo m68k-cbm-sysv${UNAME_RELEASE}; exit 0;
920 fi
921
922 if [ -f /bin/fxc.info ]; then
923         echo fxc-alliant-concentrix
924         exit 0
925 fi
926 # end cases added for Bash
927
928 #echo '(Unable to guess system type)' 1>&2
929
930 exit 1