OSDN Git Service

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