Imported from ../bash-2.01.tar.gz.
[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:*:*)
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/[3478]??:HP-UX:*:*)
376         case "${UNAME_MACHINE}" in
377             9000/31? )            HP_ARCH=m68000 ;;
378             9000/[34]?? )         HP_ARCH=m68k ;;
379             9000/7?? | 9000/8?[1679] ) HP_ARCH=hppa1.1 ;;
380             9000/8?? )            HP_ARCH=hppa1.0 ;;
381         esac
382         HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
383         echo ${HP_ARCH}-hp-hpux${HPUX_REV}
384         exit 0 ;;
385     3050*:HI-UX:*:*)
386         sed 's/^        //' << EOF >dummy.c
387         #include <unistd.h>
388         int
389         main ()
390         {
391           long cpu = sysconf (_SC_CPU_VERSION);
392           /* The order matters, because CPU_IS_HP_MC68K erroneously returns
393              true for CPU_PA_RISC1_0.  CPU_IS_PA_RISC returns correct
394              results, however.  */
395           if (CPU_IS_PA_RISC (cpu))
396             {
397               switch (cpu)
398                 {
399                   case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break;
400                   case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break;
401                   case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break;
402                   default: puts ("hppa-hitachi-hiuxwe2"); break;
403                 }
404             }
405           else if (CPU_IS_HP_MC68K (cpu))
406             puts ("m68k-hitachi-hiuxwe2");
407           else puts ("unknown-hitachi-hiuxwe2");
408           exit (0);
409         }
410 EOF
411         ${CC-cc} dummy.c -o dummy && ./dummy && rm dummy.c dummy && exit 0
412         rm -f dummy.c dummy
413         echo unknown-hitachi-hiuxwe2
414         exit 0 ;;
415     9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* )
416         echo hppa1.1-hp-bsd
417         exit 0 ;;
418     9000/8??:4.3bsd:*:*)
419         echo hppa1.0-hp-bsd
420         exit 0 ;;
421     hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* )
422         echo hppa1.1-hp-osf
423         exit 0 ;;
424     hp8??:OSF1:*:*)
425         echo hppa1.0-hp-osf
426         exit 0 ;;
427     i?86:OSF1:*:*)
428         if [ -x /usr/sbin/sysversion ] ; then
429             echo ${UNAME_MACHINE}-pc-osf1mk
430         else
431             echo ${UNAME_MACHINE}-pc-osf1
432         fi
433         exit 0 ;;
434     parisc*:Lites*:*:*)
435         echo hppa1.1-hp-lites
436         exit 0 ;;
437     C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)
438         echo c1-convex-bsd
439         exit 0 ;;
440     C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*)
441         if getsysinfo -f scalar_acc
442         then echo c32-convex-bsd
443         else echo c2-convex-bsd
444         fi
445         exit 0 ;;
446     C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*)
447         echo c34-convex-bsd
448         exit 0 ;;
449     C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*)
450         echo c38-convex-bsd
451         exit 0 ;;
452     C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*)
453         echo c4-convex-bsd
454         exit 0 ;;
455     CRAY*X-MP:*:*:*)
456         echo xmp-cray-unicos
457         exit 0 ;;
458     CRAY*Y-MP:*:*:*)
459         echo ymp-cray-unicos${UNAME_RELEASE}
460         exit 0 ;;
461     CRAY*[A-Z]90:*:*:*)
462         echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \
463         | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \
464               -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/
465         exit 0 ;;
466     CRAY*TS:*:*:*)
467         echo t90-cray-unicos${UNAME_RELEASE}
468         exit 0 ;;
469     CRAY-2:*:*:*)
470         echo cray2-cray-unicos
471         exit 0 ;;
472     F300:UNIX_System_V:*:*)
473         FUJITSU_SYS=`uname -p | tr [A-Z] [a-z] | sed -e 's/\///'`
474         FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`
475         echo "f300-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
476         exit 0 ;;
477     F301:UNIX_System_V:*:*)
478         echo f301-fujitsu-uxpv`echo $UNAME_RELEASE | sed 's/ .*//'`
479         exit 0 ;;
480     hp3[0-9][05]:NetBSD:*:*)
481         echo m68k-hp-netbsd${UNAME_RELEASE}
482         exit 0 ;;
483     hp3[0-9][05]:OpenBSD:*:*)
484         echo m68k-hp-openbsd${UNAME_RELEASE}
485         exit 0 ;;
486     i?86:BSD/386:*:* | *:BSD/OS:*:*)
487         echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE}
488         exit 0 ;;
489     *:FreeBSD:*:*)
490         echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
491         exit 0 ;;
492     *:NetBSD:*:*)
493         echo ${UNAME_MACHINE}-unknown-netbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
494         exit 0 ;;
495     *:OpenBSD:*:*)
496         echo ${UNAME_MACHINE}-unknown-openbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
497         exit 0 ;;
498     i*:CYGWIN*:*)
499         echo i386-pc-cygwin32
500         exit 0 ;;
501     p*:CYGWIN*:*)
502         echo powerpcle-unknown-cygwin32
503         exit 0 ;;
504     prep*:SunOS:5.*:*)
505         echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
506         exit 0 ;;
507     *:GNU:*:*)
508         echo `echo ${UNAME_MACHINE}|sed -e 's,/.*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
509         exit 0 ;;
510     *:Linux:*:*)
511         # The BFD linker knows what the default object file format is, so
512         # first see if it will tell us.
513         ld_help_string=`ld --help 2>&1`
514         if echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: elf_i.86"; then
515           echo "${UNAME_MACHINE}-pc-linux-gnu" ; exit 0
516         elif echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: i.86linux"; then
517           echo "${UNAME_MACHINE}-pc-linux-gnuaout" ; exit 0
518         elif echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: i.86coff"; then
519           echo "${UNAME_MACHINE}-pc-linux-gnucoff" ; exit 0
520         elif echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: m68kelf"; then
521           echo "${UNAME_MACHINE}-unknown-linux-gnu" ; exit 0
522         elif echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: m68klinux"; then
523           echo "${UNAME_MACHINE}-unknown-linux-gnuaout" ; exit 0
524         elif echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: elf32ppc"; then
525           echo "powerpc-unknown-linux-gnu" ; exit 0
526         elif test "${UNAME_MACHINE}" = "alpha" ; then
527           echo alpha-unknown-linux-gnu ; exit 0
528         elif test "${UNAME_MACHINE}" = "sparc" ; then
529           echo sparc-unknown-linux-gnu ; exit 0
530         else
531           # Either a pre-BFD a.out linker (linux-gnuoldld) or one that does not give us
532           # useful --help.  Gcc wants to distinguish between linux-gnuoldld and linux-gnuaout.
533           test ! -d /usr/lib/ldscripts/. \
534             && echo "${UNAME_MACHINE}-pc-linux-gnuoldld" && exit 0
535           # Determine whether the default compiler is a.out or elf
536           cat >dummy.c <<EOF
537 main(argc, argv)
538 int argc;
539 char *argv[];
540 {
541 #ifdef __ELF__
542   printf ("%s-pc-linux-gnu\n", argv[1]);
543 #else
544   printf ("%s-pc-linux-gnuaout\n", argv[1]);
545 #endif
546   return 0;
547 }
548 EOF
549           ${CC-cc} dummy.c -o dummy 2>/dev/null && ./dummy "${UNAME_MACHINE}" && rm dummy.c dummy && exit 0
550           rm -f dummy.c dummy
551         fi ;;
552 # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.  earlier versions
553 # are messed up and put the nodename in both sysname and nodename.
554     i?86:DYNIX/ptx:4*:*)
555         echo i386-sequent-sysv4
556         exit 0 ;;
557     i?86:*:4.*:* | i?86:SYSTEM_V:4.*:* | i[34]86:UNIX_SV:4.*:*)
558         if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
559                 echo ${UNAME_MACHINE}-univel-sysv${UNAME_RELEASE}
560         else
561                 echo ${UNAME_MACHINE}-pc-sysv${UNAME_RELEASE}
562         fi
563         exit 0 ;;
564     i?86:*:3.2:*)
565         if test -f /usr/options/cb.name; then
566                 UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name`
567                 echo ${UNAME_MACHINE}-pc-isc$UNAME_REL
568         elif /bin/uname -X 2>/dev/null >/dev/null ; then
569                 UNAME_REL=`(/bin/uname -X|egrep Release|sed -e 's/.*= //')`
570                 (/bin/uname -X|egrep i80486 >/dev/null) && UNAME_MACHINE=i486
571                 (/bin/uname -X|egrep '^Machine.*Pentium' >/dev/null) \
572                         && UNAME_MACHINE=i586
573                 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL
574         else
575                 echo ${UNAME_MACHINE}-pc-sysv32
576         fi
577         exit 0 ;;
578     Intel:Mach:3*:*)
579         echo i386-pc-mach3
580         exit 0 ;;
581     paragon:*:*:*)
582         echo i860-intel-osf1
583         exit 0 ;;
584     i860:*:4.*:*) # i860-SVR4
585         if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then
586           echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4
587         else # Add other i860-SVR4 vendors below as they are discovered.
588           echo i860-unknown-sysv${UNAME_RELEASE}  # Unknown i860-SVR4
589         fi
590         exit 0 ;;
591     mini*:CTIX:SYS*5:*)
592         # "miniframe"
593         echo m68010-convergent-sysv
594         exit 0 ;;
595     M68*:*:R3V[567]*:*)
596         test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;;
597     3[34]??:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 4850:*:4.0:3.0)
598         OS_REL=''
599         test -r /etc/.relid \
600         && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
601         /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
602           && echo i486-ncr-sysv4.3${OS_REL} && exit 0
603         /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
604           && echo i586-ncr-sysv4.3${OS_REL} && exit 0 ;;
605     3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
606         /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
607           && echo i486-ncr-sysv4 && exit 0 ;;
608     mc68030:UNIX_System_V:4.*:*)
609         echo m68k-atari-sysv4
610         exit 0 ;;
611     m68*:LynxOS:2.*:*)
612         echo m68k-unknown-lynxos${UNAME_RELEASE}
613         exit 0 ;;
614     i?86:LynxOS:2.*:*)
615         echo i386-pc-lynxos${UNAME_RELEASE}
616         exit 0 ;;
617     TSUNAMI:LynxOS:2.*:*)
618         echo sparc-unknown-lynxos${UNAME_RELEASE}
619         exit 0 ;;
620     rs6000:LynxOS:2.*:* | PowerPC:LynxOS:2.*:*)
621         echo rs6000-unknown-lynxos${UNAME_RELEASE}
622         exit 0 ;;
623     *:LynxOS:*:*)
624         echo ${UNAME_MACHINE}-unknown-lynxos${UNAME_RELEASE}
625         exit 0 ;;
626     SM[BE]S:UNIX_SV:*:*)
627         echo mips-dde-sysv${UNAME_RELEASE}
628         exit 0 ;;
629     RM*:SINIX-*:*:*)
630         echo mips-sni-sysv4
631         exit 0 ;;
632     *:SINIX-*:*:*)
633         if uname -p 2>/dev/null >/dev/null ; then
634                 UNAME_MACHINE=`(uname -p) 2>/dev/null`
635                 echo ${UNAME_MACHINE}-sni-sysv4
636         else
637                 echo ns32k-sni-sysv
638         fi
639         exit 0 ;;
640     *:UNIX_System_V:4*:FTX*)
641         # From Gerald Hewes <hewes@openmarket.com>.
642         # How about differentiating between stratus architectures? -djm
643         echo hppa1.1-stratus-sysv4
644         exit 0 ;;
645     *:*:*:FTX*)
646         # From seanf@swdc.stratus.com.
647         echo i860-stratus-sysv4
648         exit 0 ;;              
649     mc68*:A/UX:*:*)
650         echo m68k-apple-aux${UNAME_RELEASE}
651         exit 0 ;;
652     R3000:*System_V*:*:* | R4000:UNIX_SYSV:*:*)
653         if [ -d /usr/nec ]; then
654                 echo mips-nec-sysv${UNAME_RELEASE}
655         else
656                 echo mips-unknown-sysv${UNAME_RELEASE}
657         fi
658         exit 0 ;;
659     PENTIUM:CPunix:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort
660                            # says <Richard.M.Bartel@ccMail.Census.GOV>
661         echo i586-unisys-sysv4 
662         exit 0 ;;              
663 esac
664
665 #echo '(No uname command or uname output not recognized.)' 1>&2
666 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2
667
668 cat >dummy.c <<EOF
669 #ifdef _SEQUENT_
670 # include <sys/types.h>
671 # include <sys/utsname.h>
672 #endif
673 main ()
674 {
675 #if defined (sony)
676 #if defined (MIPSEB)
677   /* BFD wants "bsd" instead of "newsos".  Perhaps BFD should be changed,
678      I don't know....  */
679   printf ("mips-sony-bsd\n"); exit (0);
680 #else
681 #include <sys/param.h>
682   printf ("m68k-sony-newsos%s\n",
683 #ifdef NEWSOS4
684           "4"
685 #else
686           ""
687 #endif
688          ); exit (0);
689 #endif
690 #endif
691
692 #if defined (__arm) && defined (__acorn) && defined (__unix)
693   printf ("arm-acorn-riscix\n"); exit (0);
694 #endif
695
696 #if defined (hp9000) && !defined (hpux)
697   printf ("m68k-hp-bsd\n"); exit (0);
698 #endif
699
700 #if defined (hp300) && !defined (hpux)
701   printf ("m68k-hp-bsd\n"); exit (0);
702 #endif
703
704 #if defined (NeXT)
705 #if !defined (__ARCHITECTURE__)
706 #define __ARCHITECTURE__ "m68k"
707 #endif
708   int version;
709   version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`;
710   printf ("%s-next-nextstep%d\n", __ARCHITECTURE__,  version);
711   exit (0);
712 #endif
713
714 #if defined (MULTIMAX) || defined (n16)
715 #if defined (UMAXV)
716   printf ("ns32k-encore-sysv\n"); exit (0);
717 #else
718 #if defined (CMU)
719   printf ("ns32k-encore-mach\n"); exit (0);
720 #else
721   printf ("ns32k-encore-bsd\n"); exit (0);
722 #endif
723 #endif
724 #endif
725
726 #if defined (__386BSD__)
727   printf ("i386-pc-bsd\n"); exit (0);
728 #endif
729
730 #if defined (sequent)
731 #if defined (i386)
732   printf ("i386-sequent-dynix\n"); exit (0);
733 #endif
734 #if defined (ns32000)
735   printf ("ns32k-sequent-dynix\n"); exit (0);
736 #endif
737 #endif
738
739 #if defined (_SEQUENT_)
740     struct utsname un;
741
742     uname(&un);
743
744     if (strncmp(un.version, "V2", 2) == 0) {
745         printf ("i386-sequent-ptx2\n"); exit (0);
746     }
747     if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */
748         printf ("i386-sequent-ptx1\n"); exit (0);
749     }
750     printf ("i386-sequent-ptx\n"); exit (0);
751
752 #endif
753
754 #if defined (vax)
755 #if !defined (ultrix)
756   printf ("vax-dec-bsd\n"); exit (0);
757 #else
758   printf ("vax-dec-ultrix\n"); exit (0);
759 #endif
760 #endif
761
762 #if defined (alliant) && defined (i860)
763   printf ("i860-alliant-bsd\n"); exit (0);
764 #endif
765
766 /* Begin cases added for Bash */
767 #if defined (tahoe)
768   printf ("tahoe-cci-bsd\n"); exit (0);
769 #endif
770
771 #if defined (nec_ews)
772 #  if defined (SYSTYPE_SYSV)
773   printf ("ews4800-nec-sysv4\n"); exit 0;
774 #  else
775   printf ("ews4800-nec-bsd\n"); exit (0);
776 #  endif
777 #endif
778
779 #if defined (sony)
780 #  if defined (SYSTYPE_SYSV)
781   printf ("mips-sony-sysv4\n"); exit 0;
782 #  else
783   printf ("mips-sony-bsd\n"); exit (0);
784 #  endif
785 #endif
786
787 #if defined (ardent)
788   printf ("titan-ardent-bsd\n"); exit (0);
789 #endif
790
791 #if defined (stardent)
792   printf ("stardent-stardent-sysv\n"); exit (0);
793 #endif
794
795 #if defined (ibm032)
796   printf ("ibmrt-ibm-bsd4.3\n"); exit (0);
797 #endif
798
799 #if defined (sequent) && defined (i386)
800   printf ("i386-sequent-bsd\n"); exit (0);
801 #endif
802
803 #if defined (qnx) && defined (i386)
804   printf ("i386-pc-qnx\n"); exit (0);
805 #endif
806
807 #if defined (gould)
808   printf ("gould-gould-bsd\n"); exit (0);
809 #endif
810
811 #if defined (unixpc)
812   printf ("unixpc-att-sysv\n"); exit (0);
813 #endif
814
815 #if defined (att386)
816   printf ("i386-att-sysv3\n"); exit (0);
817 #endif
818
819 #if defined (__m88k) && defined (__UMAXV__)
820   printf ("m88k-encore-sysv3\n"); exit (0);
821 #endif
822
823 #if defined (drs6000)
824   printf ("drs6000-icl-sysv4.2\n"); exit (0);
825 #endif
826
827 #if defined (clipper)
828   printf ("clipper-orion-bsd\n"); exit (0);
829 #endif
830
831 #if defined (is68k)
832   printf ("m68k-isi-bsd\n"); exit (0);
833 #endif
834
835 #if defined (luna88k)
836   printf ("luna88k-omron-bsd\n"); exit (0);
837 #endif
838
839 #if defined (butterfly) && defined (BFLY1)
840   printf ("butterfly-bbn-mach\n"); exit (0);
841 #endif
842
843 #if defined (tower32)
844   printf ("tower32-ncr-sysv4\n"); exit (0);
845 #endif
846
847 #if defined (MagicStation)
848   printf ("magicstation-unknown-bsd\n"); exit (0);
849 #endif
850
851 #if defined (scs)
852   printf ("symmetric-scs-bsd4.2\n"); exit (0);
853 #endif
854
855 #if defined (tandem)
856   printf ("tandem-tandem-sysv\n"); exit (0);
857 #endif
858
859 #if defined (cadmus)
860   printf ("cadmus-pcs-sysv\n"); exit (0);
861 #endif
862
863 #if defined (masscomp)
864   printf ("masscomp-masscomp-sysv3\n"); exit (0);
865 #endif
866
867 #if defined (hbullx20)
868   printf ("hbullx20-bull-sysv3\n"); exit (0);
869 #endif
870
871 /* End cases added for Bash */
872
873   exit (1);
874 }
875 EOF
876
877 ${CC-cc} dummy.c -o dummy 2>/dev/null && ./dummy && rm dummy.c dummy && exit 0
878 rm -f dummy.c dummy
879
880 # Apollos put the system type in the environment.
881
882 test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit 0; }
883
884 # Convex versions that predate uname can use getsysinfo(1)
885
886 if [ -x /usr/convex/getsysinfo ]
887 then
888     case `getsysinfo -f cpu_type` in
889     c1*)
890         echo c1-convex-bsd
891         exit 0 ;;
892     c2*)
893         if getsysinfo -f scalar_acc
894         then echo c32-convex-bsd
895         else echo c2-convex-bsd
896         fi
897         exit 0 ;;
898     c34*)
899         echo c34-convex-bsd
900         exit 0 ;;
901     c38*)
902         echo c38-convex-bsd
903         exit 0 ;;
904     c4*)
905         echo c4-convex-bsd
906         exit 0 ;;
907     esac
908 fi
909
910 # Begin cases added for Bash
911 case "$UNAME" in
912 uts) echo uts-amdahl-sysv${UNAME_RELEASE}; exit 0 ;;
913 esac
914
915 if [ -d /usr/amiga ]; then
916         echo m68k-cbm-sysv${UNAME_RELEASE}; exit 0;
917 fi
918
919 if [ -f /bin/fxc.info ]; then
920         echo fxc-alliant-concentrix
921         exit 0
922 fi
923 # end cases added for Bash
924
925 #echo '(Unable to guess system type)' 1>&2
926
927 exit 1