More merges from FSF.
[platform/upstream/binutils.git] / config.guess
1 #!/bin/sh
2 # This script attempts to guess a canonical system name.
3 #   Copyright (C) 1992, 1993, 1994 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., 675 Mass Ave, Cambridge, MA 02139, USA.  */
18
19 #
20 # This script attempts to guess a canonical system name similar to
21 # config.sub.  If it succeeds, it prints the system name on stdout, and
22 # exits with 0.  Otherwise, it exits with 1.
23 #
24 # The plan is that this can be called by configure scripts if you
25 # don't specify an explicit system type (host/target name).
26 #
27 # Only a few systems have been added to this list; please add others
28 # (but try to keep the structure clean).
29 #
30
31 # This is needed to find uname on a Pyramid OSx when run in the BSD universe.
32 # (ghazi@noc.rutgers.edu 8/24/94.)
33 if (test -f /.attbin/uname) >/dev/null 2>&1 ; then
34         PATH=$PATH:/.attbin ; export PATH
35 fi
36
37 UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown
38 UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown
39 UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown
40 UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
41
42 # Note: order is significant - the case branches are not exclusive.
43
44 case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
45     alpha:OSF1:V*:*)
46         # After 1.2, OSF1 uses "V1.3" for uname -r.
47         echo alpha-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^V//'`
48         exit 0 ;;
49     alpha:OSF1:*:*)
50         # 1.2 uses "1.2" for uname -r.
51         echo alpha-dec-osf${UNAME_RELEASE}
52         exit 0 ;;
53     arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*)
54         echo arm-acorn-riscix${UNAME_RELEASE}
55         exit 0;;
56     Pyramid*:OSx*:*:*)
57         if test "`(/bin/universe) 2>/dev/null`" = att ; then
58                 echo pyramid-pyramid-sysv3
59         else
60                 echo pyramid-pyramid-bsd
61         fi
62         exit 0 ;;
63     sun4*:SunOS:5.*:*)
64         echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
65         exit 0 ;;
66     sun4*:SunOS:6*:*)
67         # According to config.sub, this is the proper way to canonicalize
68         # SunOS6.  Hard to guess exactly what SunOS6 will be like, but
69         # it's likely to be more like Solaris than SunOS4.
70         echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
71         exit 0 ;;
72     sun4*:SunOS:*:*)
73         echo sparc-sun-sunos${UNAME_RELEASE}
74         exit 0 ;;
75     sun3*:SunOS:*:*)
76         echo m68k-sun-sunos${UNAME_RELEASE}
77         exit 0 ;;
78     mc68030:UNIX_System_V:4.*:*)
79         echo m68k-atari-sysv4
80         exit 0 ;;
81     RISC*:ULTRIX:*:*)
82         echo mips-dec-ultrix${UNAME_RELEASE}
83         exit 0 ;;
84     VAX*:ULTRIX*:*:*)
85         echo vax-dec-ultrix${UNAME_RELEASE}
86         exit 0 ;;
87     mips:*:5*:RISCos)
88         echo mips-mips-riscos${UNAME_RELEASE}
89         exit 0 ;;
90     m88k:CX/UX:7*:*)
91         echo m88k-harris-cxux7
92         exit 0 ;;
93     m88k:*:4*:R4*)
94         echo m88k-motorola-sysv4
95         exit 0 ;;
96     m88k:*:3*:R3*)
97         echo m88k-motorola-sysv3
98         exit 0 ;;
99     AViiON:dgux:*:*)
100         if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx \
101              -o ${TARGET_BINARY_INTERFACE}x = x ] ; then
102                 echo m88k-dg-dgux${UNAME_RELEASE}
103         else
104                 echo m88k-dg-dguxbcs${UNAME_RELEASE}
105         fi
106         exit 0 ;;
107     M88*:DolphinOS:*:*) # DolphinOS (SVR3)
108         echo m88k-dolphin-sysv3
109         exit 0 ;;
110     M88*:*:R3*:*)
111         # Delta 88k system running SVR3
112         echo m88k-motorola-sysv3
113         exit 0 ;;
114     XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3)
115         echo m88k-tektronix-sysv3
116         exit 0 ;;
117     Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD)
118         echo m68k-tektronix-bsd
119         exit 0 ;;
120     *:IRIX:*:*)
121         echo mips-sgi-irix${UNAME_RELEASE}
122         exit 0 ;;
123     i[34]86:AIX:*:*)
124         echo i386-ibm-aix
125         exit 0 ;;
126     *:AIX:2:3)
127         if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then
128                 echo rs6000-ibm-aix3.2.5
129         elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then
130                 echo rs6000-ibm-aix3.2.4
131         else
132                 echo rs6000-ibm-aix3.2
133         fi
134         exit 0 ;;
135     *:AIX:*:*)
136         echo rs6000-ibm-aix
137         exit 0 ;;
138     *:BOSX:*:*)
139         echo rs6000-bull-bosx
140         exit 0 ;;
141     DPX/2?00:B.O.S.:*:*)
142         echo m68k-bull-sysv3
143         exit 0 ;;
144     9000/[34]??:4.3bsd:1.*:*)
145         echo m68k-hp-bsd
146         exit 0 ;;
147     hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*)
148         echo m68k-hp-bsd4.4
149         exit 0 ;;
150     9000/[3478]??:HP-UX:*:*)
151         case "${UNAME_MACHINE}" in
152             9000/31? )            HP_ARCH=m68000 ;;
153             9000/[34]?? )         HP_ARCH=m68k ;;
154             9000/7?? | 9000/8?7 ) HP_ARCH=hppa1.1 ;;
155             9000/8?? )            HP_ARCH=hppa1.0 ;;
156         esac
157         case ${UNAME_RELEASE} in
158             *.B7.* )          HPUX_REV=7 ;;
159             *.[B0]8.* )       HPUX_REV=8 ;;
160             *.09.* )          HPUX_REV=9 ;;
161         esac
162         echo ${HP_ARCH}-hp-hpux${HPUX_REV}
163         exit 0 ;;
164     3050*:HI-UX:*:*)
165         sed 's/^        //' << EOF >dummy.c
166         #include <unistd.h>
167         int
168         main ()
169         {
170           long cpu = sysconf (_SC_CPU_VERSION);
171           /* The order matters, because CPU_IS_HP_MC68K erroneously returns
172              true for CPU_PA_RISC1_0.  CPU_IS_PA_RISC returns correct
173              results, however.  */
174           if (CPU_IS_PA_RISC (cpu))
175             {
176               switch (cpu)
177                 {
178                   case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break;
179                   case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break;
180                   case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break;
181                   default: puts ("hppa-hitachi-hiuxwe2"); break;
182                 }
183             }
184           else if (CPU_IS_HP_MC68K (cpu))
185             puts ("m68k-hitachi-hiuxwe2");
186           else puts ("unknown-hitachi-hiuxwe2");
187           exit (0);
188         }
189 EOF
190         ${CC-cc} dummy.c -o dummy && ./dummy && rm dummy.c dummy && exit 0
191         rm -f dummy.c dummy
192         echo unknown-hitachi-hiuxwe2
193         exit 0 ;;
194     9000/7??:4.3bsd:*:* | 9000/8?7:4.3bsd:*:* )
195         echo hppa1.1-hp-bsd
196         exit 0 ;;
197     9000/8??:4.3bsd:*:*)
198         echo hppa1.0-hp-bsd
199         exit 0 ;;
200     hp7??:OSF1:*:* | hp8?7:OSF1:*:* )
201         echo hppa1.1-hp-osf
202         exit 0 ;;
203     hp8??:OSF1:*:*)
204         echo hppa1.0-hp-osf
205         exit 0 ;;
206     C1*:ConvexOS:*:* | convex:ConvexOS:C1:*)
207         echo c1-convex-bsd
208         exit 0 ;;
209     C2*:ConvexOS:*:* | convex:ConvexOS:C2:*)
210         echo c2-convex-bsd
211         exit 0 ;;
212     CRAY*X-MP:UNICOS:*:*)
213         echo xmp-cray-unicos
214         exit 0 ;;
215     CRAY*Y-MP:UNICOS:*:*)
216         echo ymp-cray-unicos
217         exit 0 ;;
218     CRAY-2:UNICOS:*:*)
219         echo cray2-cray-unicos
220         exit 0 ;;
221     hp3[0-9][05]:NetBSD:*:*)
222         echo m68k-hp-netbsd${UNAME_RELEASE}
223         exit 0 ;;
224     i[34]86:BSD/386:*:*)
225         echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
226         exit 0 ;;
227     i[34]86:FreeBSD:*:*)
228         echo ${UNAME_MACHINE}-unknown-freebsd${UNAME_RELEASE}
229         exit 0 ;;
230     i[34]86:NetBSD:*:*)
231         echo ${UNAME_MACHINE}-unknown-netbsd${UNAME_RELEASE}
232         exit 0 ;;
233     i[34]86:Linux:*:*)
234         echo ${UNAME_MACHINE}-unknown-linux
235         exit 0 ;;
236     i[34]86:UNIX_SV:4.*:*)
237         if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
238                 echo ${UNAME_MACHINE}-univel-sysv${UNAME_RELEASE}
239         else
240                 echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}
241         fi
242         exit 0 ;;
243     i[34]86:*:3.2:*)
244         if /bin/uname -X 2>/dev/null >/dev/null ; then
245                 UNAME_REL=`(/bin/uname -X|egrep Release|sed -e 's/.*= //')`
246                 (/bin/uname -X|egrep i80486 >/dev/null) && UNAME_MACHINE=i486
247                 echo ${UNAME_MACHINE}-unknown-sco$UNAME_REL
248         elif test -f /usr/options/cb.name; then
249                 UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name`
250                 echo ${UNAME_MACHINE}-unknown-isc$UNAME_REL
251         else
252                 echo ${UNAME_MACHINE}-unknown-sysv32
253         fi
254         exit 0 ;;
255 # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.  earlier versions
256 # are messed up and put the nodename in both sysname and nodename.
257     i[34]86:DYNIX/ptx:4*:*)
258         echo i386-sequent-sysv4
259         exit 0 ;;
260     Intel:Mach:3*:*)
261         echo i386-unknown-mach3
262         exit 0 ;;
263     i860:*:4.*:*) # i860-SVR4
264         if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then
265           echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4
266         else # Add other i860-SVR4 vendors below as they are discovered.
267           echo i860-unknown-sysv${UNAME_RELEASE}  # Unknown i860-SVR4
268         fi
269         exit 0 ;;
270     mini*:CTIX:SYS*5:*)
271         # "miniframe"
272         echo m68010-convergent-sysv
273         exit 0 ;;
274     M680[234]0:*:R3V[567]*:*)
275         test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;;
276     3[34]??:*:4.0:*)
277         uname -p 2>/dev/null | grep 86 >/dev/null \
278           && echo i486-ncr-sysv4 && exit 0 ;;
279     33[56]0,3???:*:4.0:*)
280         uname -p 2>/dev/null | grep 86 >/dev/null \
281           && echo i486-ncr-sysv43 && exit 0 ;;
282     m680[234]0:LynxOS:2.2*:*)
283         echo m68k-lynx-lynxos${UNAME_RELEASE}
284         exit 0 ;;
285     i[34]86:LynxOS:2.2*:*)
286         echo i386-lynx-lynxos${UNAME_RELEASE}
287         exit 0 ;;
288     TSUNAMI:LynxOS:2.2*:*)
289         echo sparc-lynx-lynxos${UNAME_RELEASE}
290         exit 0 ;;
291     rs6000:LynxOS:2.2*:*)
292         echo rs6000-lynx-lynxos${UNAME_RELEASE}
293         exit 0 ;;
294     RM*:SINIX-*:*:*)
295         echo mips-sni-sysv4
296         exit 0 ;;
297     *:SINIX-*:*:*)
298         if uname -p 2>/dev/null >/dev/null ; then
299                 UNAME_MACHINE=`(uname -p) 2>/dev/null`
300                 echo ${UNAME_MACHINE}-sni-sysv4
301         else
302                 echo ns32k-sni-sysv
303         fi
304         exit 0 ;;
305 esac
306
307 #echo '(No uname command or uname output not recognized.)' 1>&2
308 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2
309
310 cat >dummy.c <<EOF
311 main()
312 {
313 #if defined (sony)
314 #if defined (MIPSEB)
315   /* BFD wants "bsd" instead of "newsos".  Perhaps BFD should be changed,
316      I don't know....  */
317   printf ("mips-sony-bsd\n"); exit (0);
318 #else
319   printf("m68k-sony-newsos\n"); exit(0);
320 #endif
321 #endif
322
323 #if defined (__arm) && defined (__acorn) && defined (__unix)
324   printf("arm-acorn-riscix"); exit (0);
325 #endif
326
327 #if defined(hp300) && !defined(hpux)
328   printf("m68k-hp-bsd\n"); exit(0);
329 #endif
330
331 #if defined(NeXT)
332 #if !defined(__ARCHITECTURE__)
333 #define __ARCHITECTURE__ "m68k"
334 #endif
335   printf("%s-next-nextstep\n", __ARCHITECTURE__); exit(0);
336 #endif
337
338 #if defined (MULTIMAX) || defined (n16)
339 #if defined (UMAXV)
340   printf("ns32k-encore-sysv\n"); exit(0);
341 #else
342 #if defined (CMU)
343   printf("ns32k-encore-mach\n"); exit(0);
344 #else
345   printf("ns32k-encore-bsd\n"); exit(0);
346 #endif
347 #endif
348 #endif
349
350 #if defined(__386BSD__)
351   printf("i386-unknown-bsd\n"); exit(0);
352 #endif
353
354 #if defined(sequent)
355 #if defined(i386)
356   printf("i386-sequent-dynix\n"); exit(0);
357 #endif
358 #if defined (ns32000)
359   printf("ns32k-sequent-dynix\n"); exit(0);
360 #endif
361 #endif
362
363 #if defined(_SEQUENT_)
364   printf("i386-sequent-ptx\n"); exit(0);
365 #endif
366
367 #if defined(vax)
368 #if !defined(ultrix)
369   printf("vax-dec-bsd\n"); exit(0);
370 #else
371   printf("vax-dec-ultrix\n"); exit(0);
372 #endif
373 #endif
374
375 #if defined (alliant) && defined (i860)
376   printf ("i860-alliant-bsd\n"); exit (0);
377 #endif
378
379   exit (1);
380 }
381 EOF
382
383 ${CC-cc} dummy.c -o dummy && ./dummy && rm dummy.c dummy && exit 0
384 rm -f dummy.c dummy
385
386 # Apollos put the system type in the environment.
387
388 test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit 0; }
389
390 #echo '(Unable to guess system type)' 1>&2
391
392 exit 1