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