]> git.ipfire.org Git - thirdparty/glibc.git/blame - scripts/config.guess
Update.
[thirdparty/glibc.git] / scripts / config.guess
CommitLineData
28f540f4
RM
1#! /bin/sh
2# Attempt to guess a canonical system name.
47c130e3 3# Copyright (C) 1992, 93, 94, 95, 96, 97, 1998 Free Software Foundation, Inc.
28f540f4
RM
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
d144e1d2 17# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
28f540f4
RM
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.
47c130e3 26# Please send patches to the Autoconf mailing list <autoconf@gnu.org>.
28f540f4
RM
27#
28# This script attempts to guess a canonical system name similar to
29# config.sub. If it succeeds, it prints the system name on stdout, and
30# exits with 0. Otherwise, it exits with 1.
31#
32# The plan is that this can be called by configure scripts if you
33# don't specify an explicit system type (host/target name).
34#
35# Only a few systems have been added to this list; please add others
36# (but try to keep the structure clean).
37#
38
39# This is needed to find uname on a Pyramid OSx when run in the BSD universe.
40# (ghazi@noc.rutgers.edu 8/24/94.)
41if (test -f /.attbin/uname) >/dev/null 2>&1 ; then
42 PATH=$PATH:/.attbin ; export PATH
43fi
44
45UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown
46UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown
47UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown
48UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
49
47c130e3
UD
50dummy=dummy-$$
51trap 'rm -f $dummy.c $dummy.o $dummy; exit 1' 1 2 15
28f540f4
RM
52
53# Note: order is significant - the case branches are not exclusive.
54
55case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
28f540f4 56 alpha:OSF1:*:*)
9a0a462c
UD
57 if test $UNAME_RELEASE = "V4.0"; then
58 UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
59 fi
147e6009
PB
60 # A Vn.n version is a released version.
61 # A Tn.n version is a released field test version.
62 # A Xn.n version is an unreleased experimental baselevel.
28f540f4 63 # 1.2 uses "1.2" for uname -r.
47c130e3 64 cat <<EOF >$dummy.s
60c96635
UD
65 .globl main
66 .ent main
67main:
68 .frame \$30,0,\$26,0
69 .prologue 0
9a0a462c
UD
70 .long 0x47e03d80 # implver $0
71 lda \$2,259
72 .long 0x47e20c21 # amask $2,$1
73 srl \$1,8,\$2
74 sll \$2,2,\$2
75 sll \$0,3,\$0
76 addl \$1,\$0,\$0
77 addl \$2,\$0,\$0
60c96635
UD
78 ret \$31,(\$26),1
79 .end main
80EOF
47c130e3 81 ${CC-cc} $dummy.s -o $dummy 2>/dev/null
60c96635 82 if test "$?" = 0 ; then
47c130e3 83 ./$dummy
60c96635 84 case "$?" in
9a0a462c
UD
85 7)
86 UNAME_MACHINE="alpha"
87 ;;
88 15)
60c96635
UD
89 UNAME_MACHINE="alphaev5"
90 ;;
9a0a462c 91 14)
60c96635
UD
92 UNAME_MACHINE="alphaev56"
93 ;;
9a0a462c
UD
94 10)
95 UNAME_MACHINE="alphapca56"
96 ;;
97 16)
98 UNAME_MACHINE="alphaev6"
99 ;;
60c96635
UD
100 esac
101 fi
47c130e3 102 rm -f $dummy.s $dummy
9a0a462c 103 echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VTX]//' | tr [[A-Z]] [[a-z]]`
147e6009 104 exit 0 ;;
1577cd47
RK
105 21064:Windows_NT:50:3)
106 echo alpha-dec-winnt3.5
107 exit 0 ;;
889a9677
PB
108 Amiga*:UNIX_System_V:4.0:*)
109 echo m68k-cbm-sysv4
110 exit 0;;
0cad6dc7
RK
111 amiga:NetBSD:*:*)
112 echo m68k-cbm-netbsd${UNAME_RELEASE}
113 exit 0 ;;
d780e42f 114 amiga:OpenBSD:*:*)
9d8067d8
UD
115 echo m68k-unknown-openbsd${UNAME_RELEASE}
116 exit 0 ;;
47c130e3
UD
117 *:[Aa]miga[Oo][Ss]:*:*)
118 echo ${UNAME_MACHINE}-unknown-amigaos
119 exit 0 ;;
b4012b75 120 arc64:OpenBSD:*:*)
9d8067d8
UD
121 echo mips64el-unknown-openbsd${UNAME_RELEASE}
122 exit 0 ;;
b4012b75
UD
123 arc:OpenBSD:*:*)
124 echo mipsel-unknown-openbsd${UNAME_RELEASE}
125 exit 0 ;;
126 hkmips:OpenBSD:*:*)
127 echo mips-unknown-openbsd${UNAME_RELEASE}
9d8067d8
UD
128 exit 0 ;;
129 pmax:OpenBSD:*:*)
b4012b75
UD
130 echo mipsel-unknown-openbsd${UNAME_RELEASE}
131 exit 0 ;;
132 sgi:OpenBSD:*:*)
133 echo mips-unknown-openbsd${UNAME_RELEASE}
9d8067d8
UD
134 exit 0 ;;
135 wgrisc:OpenBSD:*:*)
b4012b75 136 echo mipsel-unknown-openbsd${UNAME_RELEASE}
9d8067d8 137 exit 0 ;;
28f540f4
RM
138 arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*)
139 echo arm-acorn-riscix${UNAME_RELEASE}
140 exit 0;;
907a1bac
UD
141 arm32:NetBSD:*:*)
142 echo arm-unknown-netbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
143 exit 0 ;;
2ca1375a
DM
144 SR2?01:HI-UX/MPP:*:*)
145 echo hppa1.1-hitachi-hiuxmpp
146 exit 0;;
47c130e3 147 Pyramid*:OSx*:*:*|MIS*:OSx*:*:*|MIS*:SMP_DC-OSx*:*:*)
d780e42f 148 # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE.
28f540f4
RM
149 if test "`(/bin/universe) 2>/dev/null`" = att ; then
150 echo pyramid-pyramid-sysv3
151 else
152 echo pyramid-pyramid-bsd
153 fi
154 exit 0 ;;
47c130e3 155 NILE*:*:*:dcosx)
d780e42f
DM
156 echo pyramid-pyramid-svr4
157 exit 0 ;;
47c130e3
UD
158 sun4H:SunOS:5.*:*)
159 echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
160 exit 0 ;;
b296c233 161 sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
28f540f4
RM
162 echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
163 exit 0 ;;
63deb0e4 164 i86pc:SunOS:5.*:*)
20e77fa0 165 echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
63deb0e4 166 exit 0 ;;
28f540f4
RM
167 sun4*:SunOS:6*:*)
168 # According to config.sub, this is the proper way to canonicalize
169 # SunOS6. Hard to guess exactly what SunOS6 will be like, but
170 # it's likely to be more like Solaris than SunOS4.
171 echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
172 exit 0 ;;
173 sun4*:SunOS:*:*)
174 case "`/usr/bin/arch -k`" in
175 Series*|S4*)
176 UNAME_RELEASE=`uname -v`
177 ;;
178 esac
179 # Japanese Language versions have a version number like `4.1.3-JL'.
180 echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'`
181 exit 0 ;;
182 sun3*:SunOS:*:*)
183 echo m68k-sun-sunos${UNAME_RELEASE}
184 exit 0 ;;
3996f34b
UD
185 sun*:*:4.2BSD:*)
186 UNAME_RELEASE=`(head -1 /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
187 test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3
188 case "`/bin/arch`" in
189 sun3)
190 echo m68k-sun-sunos${UNAME_RELEASE}
191 ;;
192 sun4)
193 echo sparc-sun-sunos${UNAME_RELEASE}
194 ;;
195 esac
196 exit 0 ;;
b296c233
PB
197 aushp:SunOS:*:*)
198 echo sparc-auspex-sunos${UNAME_RELEASE}
199 exit 0 ;;
1f1c1b2b
RK
200 atari*:NetBSD:*:*)
201 echo m68k-atari-netbsd${UNAME_RELEASE}
202 exit 0 ;;
d780e42f 203 atari*:OpenBSD:*:*)
9d8067d8 204 echo m68k-unknown-openbsd${UNAME_RELEASE}
d780e42f 205 exit 0 ;;
1f1c1b2b
RK
206 sun3*:NetBSD:*:*)
207 echo m68k-sun-netbsd${UNAME_RELEASE}
208 exit 0 ;;
d780e42f 209 sun3*:OpenBSD:*:*)
9d8067d8 210 echo m68k-unknown-openbsd${UNAME_RELEASE}
d780e42f 211 exit 0 ;;
1f1c1b2b
RK
212 mac68k:NetBSD:*:*)
213 echo m68k-apple-netbsd${UNAME_RELEASE}
214 exit 0 ;;
d780e42f 215 mac68k:OpenBSD:*:*)
9d8067d8
UD
216 echo m68k-unknown-openbsd${UNAME_RELEASE}
217 exit 0 ;;
218 mvme68k:OpenBSD:*:*)
219 echo m68k-unknown-openbsd${UNAME_RELEASE}
220 exit 0 ;;
221 mvme88k:OpenBSD:*:*)
222 echo m88k-unknown-openbsd${UNAME_RELEASE}
d780e42f 223 exit 0 ;;
aee321f4
DM
224 powerpc:machten:*:*)
225 echo powerpc-apple-machten${UNAME_RELEASE}
226 exit 0 ;;
47c130e3
UD
227 macppc:NetBSD:*:*)
228 echo powerpc-apple-netbsd${UNAME_RELEASE}
229 exit 0 ;;
b296c233
PB
230 RISC*:Mach:*:*)
231 echo mips-dec-mach_bsd4.3
232 exit 0 ;;
28f540f4
RM
233 RISC*:ULTRIX:*:*)
234 echo mips-dec-ultrix${UNAME_RELEASE}
235 exit 0 ;;
236 VAX*:ULTRIX*:*:*)
237 echo vax-dec-ultrix${UNAME_RELEASE}
238 exit 0 ;;
51702635
UD
239 2020:CLIX:*:*)
240 echo clipper-intergraph-clix${UNAME_RELEASE}
241 exit 0 ;;
caa9e37a 242 mips:*:*:UMIPS | mips:*:*:RISCos)
47c130e3 243 sed 's/^ //' << EOF >$dummy.c
caa9e37a
PB
244 int main (argc, argv) int argc; char **argv; {
245 #if defined (host_mips) && defined (MIPSEB)
246 #if defined (SYSTYPE_SYSV)
247 printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0);
248 #endif
249 #if defined (SYSTYPE_SVR4)
250 printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0);
251 #endif
252 #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD)
253 printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0);
254 #endif
255 #endif
256 exit (-1);
257 }
258EOF
47c130e3
UD
259 ${CC-cc} $dummy.c -o $dummy \
260 && ./$dummy `echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` \
261 && rm $dummy.c $dummy && exit 0
262 rm -f $dummy.c $dummy
60326989 263 echo mips-mips-riscos${UNAME_RELEASE}
28f540f4 264 exit 0 ;;
d72d8b13
PB
265 Night_Hawk:Power_UNIX:*:*)
266 echo powerpc-harris-powerunix
267 exit 0 ;;
28f540f4
RM
268 m88k:CX/UX:7*:*)
269 echo m88k-harris-cxux7
270 exit 0 ;;
271 m88k:*:4*:R4*)
272 echo m88k-motorola-sysv4
273 exit 0 ;;
274 m88k:*:3*:R3*)
275 echo m88k-motorola-sysv3
276 exit 0 ;;
277 AViiON:dgux:*:*)
d2774288 278 # DG/UX returns AViiON for all architectures
147e6009 279 UNAME_PROCESSOR=`/usr/bin/uname -p`
59dd8641 280 if [ $UNAME_PROCESSOR = mc88100 -o $UNAME_PROCESSOR = mc88110 ] ; then
28f540f4
RM
281 if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx \
282 -o ${TARGET_BINARY_INTERFACE}x = x ] ; then
283 echo m88k-dg-dgux${UNAME_RELEASE}
284 else
285 echo m88k-dg-dguxbcs${UNAME_RELEASE}
286 fi
d2774288
SC
287 else echo i586-dg-dgux${UNAME_RELEASE}
288 fi
28f540f4
RM
289 exit 0 ;;
290 M88*:DolphinOS:*:*) # DolphinOS (SVR3)
291 echo m88k-dolphin-sysv3
292 exit 0 ;;
293 M88*:*:R3*:*)
294 # Delta 88k system running SVR3
295 echo m88k-motorola-sysv3
296 exit 0 ;;
297 XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3)
298 echo m88k-tektronix-sysv3
299 exit 0 ;;
300 Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD)
301 echo m68k-tektronix-bsd
302 exit 0 ;;
303 *:IRIX*:*:*)
304 echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'`
305 exit 0 ;;
d780e42f 306 ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX.
28f540f4
RM
307 echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id
308 exit 0 ;; # Note that: echo "'`uname -s`'" gives 'AIX '
d780e42f 309 i?86:AIX:*:*)
28f540f4
RM
310 echo i386-ibm-aix
311 exit 0 ;;
312 *:AIX:2:3)
313 if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then
47c130e3 314 sed 's/^ //' << EOF >$dummy.c
28f540f4
RM
315 #include <sys/systemcfg.h>
316
317 main()
318 {
319 if (!__power_pc())
320 exit(1);
321 puts("powerpc-ibm-aix3.2.5");
322 exit(0);
323 }
324EOF
47c130e3
UD
325 ${CC-cc} $dummy.c -o $dummy && ./$dummy && rm $dummy.c $dummy && exit 0
326 rm -f $dummy.c $dummy
28f540f4
RM
327 echo rs6000-ibm-aix3.2.5
328 elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then
329 echo rs6000-ibm-aix3.2.4
330 else
331 echo rs6000-ibm-aix3.2
332 fi
333 exit 0 ;;
334 *:AIX:*:4)
47c130e3
UD
335 IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | head -1 | awk '{ print $1 }'`
336 if /usr/sbin/lsattr -EHl ${IBM_CPU_ID} | grep POWER >/dev/null 2>&1; then
28f540f4
RM
337 IBM_ARCH=rs6000
338 else
339 IBM_ARCH=powerpc
340 fi
e7233b09
RK
341 if [ -x /usr/bin/oslevel ] ; then
342 IBM_REV=`/usr/bin/oslevel`
28f540f4
RM
343 else
344 IBM_REV=4.${UNAME_RELEASE}
345 fi
346 echo ${IBM_ARCH}-ibm-aix${IBM_REV}
347 exit 0 ;;
348 *:AIX:*:*)
349 echo rs6000-ibm-aix
350 exit 0 ;;
351 ibmrt:4.4BSD:*|romp-ibm:BSD:*)
352 echo romp-ibm-bsd4.4
353 exit 0 ;;
354 ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC NetBSD and
59dd8641 355 echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to
28f540f4
RM
356 exit 0 ;; # report: romp-ibm BSD 4.3
357 *:BOSX:*:*)
358 echo rs6000-bull-bosx
359 exit 0 ;;
360 DPX/2?00:B.O.S.:*:*)
361 echo m68k-bull-sysv3
362 exit 0 ;;
363 9000/[34]??:4.3bsd:1.*:*)
364 echo m68k-hp-bsd
365 exit 0 ;;
366 hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*)
367 echo m68k-hp-bsd4.4
368 exit 0 ;;
47c130e3 369 9000/[34678]??:HP-UX:*:*)
28f540f4
RM
370 case "${UNAME_MACHINE}" in
371 9000/31? ) HP_ARCH=m68000 ;;
372 9000/[34]?? ) HP_ARCH=m68k ;;
47c130e3
UD
373 9000/6?? | 9000/7?? | 9000/80[24] | 9000/8?[13679] | 9000/892 )
374 sed 's/^ //' << EOF >$dummy.c
375 #include <stdlib.h>
376 #include <unistd.h>
0dbd5567 377
47c130e3
UD
378 int main ()
379 {
380 #if defined(_SC_KERNEL_BITS)
381 long bits = sysconf(_SC_KERNEL_BITS);
0dbd5567 382 #endif
47c130e3 383 long cpu = sysconf (_SC_CPU_VERSION);
0dbd5567
UD
384
385 switch (cpu)
47c130e3
UD
386 {
387 case CPU_PA_RISC1_0: puts ("hppa1.0"); break;
388 case CPU_PA_RISC1_1: puts ("hppa1.1"); break;
0dbd5567 389 case CPU_PA_RISC2_0:
47c130e3 390 #if defined(_SC_KERNEL_BITS)
0dbd5567 391 switch (bits)
47c130e3
UD
392 {
393 case 64: puts ("hppa2.0w"); break;
394 case 32: puts ("hppa2.0n"); break;
395 default: puts ("hppa2.0"); break;
396 } break;
397 #else /* !defined(_SC_KERNEL_BITS) */
398 puts ("hppa2.0"); break;
0dbd5567 399 #endif
47c130e3
UD
400 default: puts ("hppa1.0"); break;
401 }
402 exit (0);
403 }
404EOF
405 (${CC-cc} $dummy.c -o $dummy 2>/dev/null ) && HP_ARCH=`./$dummy`
406 rm -f $dummy.c $dummy
28f540f4
RM
407 esac
408 HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
409 echo ${HP_ARCH}-hp-hpux${HPUX_REV}
410 exit 0 ;;
411 3050*:HI-UX:*:*)
47c130e3 412 sed 's/^ //' << EOF >$dummy.c
28f540f4
RM
413 #include <unistd.h>
414 int
415 main ()
416 {
417 long cpu = sysconf (_SC_CPU_VERSION);
418 /* The order matters, because CPU_IS_HP_MC68K erroneously returns
419 true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct
420 results, however. */
421 if (CPU_IS_PA_RISC (cpu))
422 {
423 switch (cpu)
424 {
425 case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break;
426 case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break;
427 case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break;
428 default: puts ("hppa-hitachi-hiuxwe2"); break;
429 }
430 }
431 else if (CPU_IS_HP_MC68K (cpu))
432 puts ("m68k-hitachi-hiuxwe2");
433 else puts ("unknown-hitachi-hiuxwe2");
434 exit (0);
435 }
436EOF
47c130e3
UD
437 ${CC-cc} $dummy.c -o $dummy && ./$dummy && rm $dummy.c $dummy && exit 0
438 rm -f $dummy.c $dummy
28f540f4
RM
439 echo unknown-hitachi-hiuxwe2
440 exit 0 ;;
c90514fc 441 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* )
28f540f4
RM
442 echo hppa1.1-hp-bsd
443 exit 0 ;;
444 9000/8??:4.3bsd:*:*)
445 echo hppa1.0-hp-bsd
446 exit 0 ;;
c90514fc 447 hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* )
28f540f4
RM
448 echo hppa1.1-hp-osf
449 exit 0 ;;
450 hp8??:OSF1:*:*)
451 echo hppa1.0-hp-osf
452 exit 0 ;;
b296c233
PB
453 i?86:OSF1:*:*)
454 if [ -x /usr/sbin/sysversion ] ; then
455 echo ${UNAME_MACHINE}-unknown-osf1mk
456 else
457 echo ${UNAME_MACHINE}-unknown-osf1
458 fi
459 exit 0 ;;
9266597a
MM
460 parisc*:Lites*:*:*)
461 echo hppa1.1-hp-lites
462 exit 0 ;;
28f540f4
RM
463 C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)
464 echo c1-convex-bsd
465 exit 0 ;;
466 C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*)
467 if getsysinfo -f scalar_acc
468 then echo c32-convex-bsd
469 else echo c2-convex-bsd
470 fi
471 exit 0 ;;
472 C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*)
473 echo c34-convex-bsd
474 exit 0 ;;
475 C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*)
476 echo c38-convex-bsd
477 exit 0 ;;
478 C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*)
479 echo c4-convex-bsd
480 exit 0 ;;
63deb0e4 481 CRAY*X-MP:*:*:*)
28f540f4
RM
482 echo xmp-cray-unicos
483 exit 0 ;;
103c293f 484 CRAY*Y-MP:*:*:*)
7ae36808
PB
485 echo ymp-cray-unicos${UNAME_RELEASE}
486 exit 0 ;;
939d5646
TG
487 CRAY*[A-Z]90:*:*:*)
488 echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \
32706074
KH
489 | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \
490 -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/
7ae36808 491 exit 0 ;;
f155a595
DM
492 CRAY*TS:*:*:*)
493 echo t90-cray-unicos${UNAME_RELEASE}
494 exit 0 ;;
47c130e3
UD
495 CRAY*T3E:*:*:*)
496 echo t3e-cray-unicosmk${UNAME_RELEASE}
497 exit 0 ;;
63deb0e4 498 CRAY-2:*:*:*)
28f540f4
RM
499 echo cray2-cray-unicos
500 exit 0 ;;
b296c233
PB
501 F300:UNIX_System_V:*:*)
502 FUJITSU_SYS=`uname -p | tr [A-Z] [a-z] | sed -e 's/\///'`
503 FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`
504 echo "f300-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
505 exit 0 ;;
2c6d7e67
DM
506 F301:UNIX_System_V:*:*)
507 echo f301-fujitsu-uxpv`echo $UNAME_RELEASE | sed 's/ .*//'`
508 exit 0 ;;
28f540f4
RM
509 hp3[0-9][05]:NetBSD:*:*)
510 echo m68k-hp-netbsd${UNAME_RELEASE}
511 exit 0 ;;
9d8067d8
UD
512 hp300:OpenBSD:*:*)
513 echo m68k-unknown-openbsd${UNAME_RELEASE}
d780e42f 514 exit 0 ;;
47c130e3
UD
515 sparc*:BSD/OS:*:*)
516 echo sparc-unknown-bsdi${UNAME_RELEASE}
517 exit 0 ;;
518 i?86:BSD/386:*:* | i?86:BSD/OS:*:*)
20e77fa0 519 echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE}
28f540f4 520 exit 0 ;;
47c130e3
UD
521 *:BSD/OS:*:*)
522 echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
523 exit 0 ;;
28f540f4
RM
524 *:FreeBSD:*:*)
525 echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
526 exit 0 ;;
527 *:NetBSD:*:*)
528 echo ${UNAME_MACHINE}-unknown-netbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
529 exit 0 ;;
d780e42f
DM
530 *:OpenBSD:*:*)
531 echo ${UNAME_MACHINE}-unknown-openbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
532 exit 0 ;;
a7cb7644 533 i*:CYGWIN*:*)
47c130e3 534 echo ${UNAME_MACHINE}-pc-cygwin
a7cb7644 535 exit 0 ;;
5ae3e846 536 i*:MINGW*:*)
47c130e3 537 echo ${UNAME_MACHINE}-pc-mingw32
5ae3e846 538 exit 0 ;;
a7cb7644 539 p*:CYGWIN*:*)
47c130e3 540 echo powerpcle-unknown-cygwin
a7cb7644 541 exit 0 ;;
2e6878f7
MM
542 prep*:SunOS:5.*:*)
543 echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
544 exit 0 ;;
28f540f4 545 *:GNU:*:*)
43b0e40f 546 echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
28f540f4
RM
547 exit 0 ;;
548 *:Linux:*:*)
47c130e3
UD
549 # uname on the ARM produces all sorts of strangeness, and we need to
550 # filter it out.
551 case "$UNAME_MACHINE" in
0dbd5567 552 armv*) ;;
47c130e3
UD
553 arm* | sa110*) UNAME_MACHINE="arm" ;;
554 esac
555
d144e1d2
PB
556 # The BFD linker knows what the default object file format is, so
557 # first see if it will tell us.
558 ld_help_string=`ld --help 2>&1`
714a562f
UD
559 ld_supported_emulations=`echo $ld_help_string \
560 | sed -ne '/supported emulations:/!d
561 s/[ ][ ]*/ /g
562 s/.*supported emulations: *//
563 s/ .*//
564 p'`
565 case "$ld_supported_emulations" in
566 i?86linux) echo "${UNAME_MACHINE}-pc-linux-gnuaout" ; exit 0 ;;
567 i?86coff) echo "${UNAME_MACHINE}-pc-linux-gnucoff" ; exit 0 ;;
568 sparclinux) echo "${UNAME_MACHINE}-unknown-linux-gnuaout" ; exit 0 ;;
47c130e3 569 armlinux) echo "${UNAME_MACHINE}-unknown-linux-gnuaout" ; exit 0 ;;
714a562f
UD
570 m68klinux) echo "${UNAME_MACHINE}-unknown-linux-gnuaout" ; exit 0 ;;
571 elf32ppc) echo "powerpc-unknown-linux-gnu" ; exit 0 ;;
572 esac
573
574 if test "${UNAME_MACHINE}" = "alpha" ; then
47c130e3 575 sed 's/^ //' <<EOF >$dummy.s
60c96635
UD
576 .globl main
577 .ent main
578 main:
579 .frame \$30,0,\$26,0
580 .prologue 0
9a0a462c
UD
581 .long 0x47e03d80 # implver $0
582 lda \$2,259
583 .long 0x47e20c21 # amask $2,$1
584 srl \$1,8,\$2
585 sll \$2,2,\$2
586 sll \$0,3,\$0
587 addl \$1,\$0,\$0
588 addl \$2,\$0,\$0
60c96635
UD
589 ret \$31,(\$26),1
590 .end main
591EOF
92f1da4d 592 LIBC=""
47c130e3 593 ${CC-cc} $dummy.s -o $dummy 2>/dev/null
60c96635 594 if test "$?" = 0 ; then
47c130e3 595 ./$dummy
60c96635 596 case "$?" in
9a0a462c
UD
597 7)
598 UNAME_MACHINE="alpha"
599 ;;
600 15)
601 UNAME_MACHINE="alphaev5"
602 ;;
603 14)
604 UNAME_MACHINE="alphaev56"
605 ;;
606 10)
607 UNAME_MACHINE="alphapca56"
608 ;;
609 16)
610 UNAME_MACHINE="alphaev6"
611 ;;
0dbd5567 612 esac
92f1da4d 613
47c130e3 614 objdump --private-headers $dummy | \
92f1da4d
UD
615 grep ld.so.1 > /dev/null
616 if test "$?" = 0 ; then
617 LIBC="libc1"
618 fi
0dbd5567 619 fi
47c130e3 620 rm -f $dummy.s $dummy
92f1da4d 621 echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} ; exit 0
3c143620 622 elif test "${UNAME_MACHINE}" = "mips" ; then
47c130e3 623 cat >$dummy.c <<EOF
3c143620 624main(argc, argv)
714a562f
UD
625 int argc;
626 char *argv[];
3c143620
I
627{
628#ifdef __MIPSEB__
629 printf ("%s-unknown-linux-gnu\n", argv[1]);
630#endif
631#ifdef __MIPSEL__
632 printf ("%sel-unknown-linux-gnu\n", argv[1]);
633#endif
634 return 0;
635}
636EOF
47c130e3
UD
637 ${CC-cc} $dummy.c -o $dummy 2>/dev/null && ./$dummy "${UNAME_MACHINE}" && rm $dummy.c $dummy && exit 0
638 rm -f $dummy.c $dummy
a026e695 639 else
714a562f
UD
640 # Either a pre-BFD a.out linker (linux-gnuoldld)
641 # or one that does not give us useful --help.
642 # GCC wants to distinguish between linux-gnuoldld and linux-gnuaout.
643 # If ld does not provide *any* "supported emulations:"
644 # that means it is gnuoldld.
645 echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations:"
646 test $? != 0 && echo "${UNAME_MACHINE}-pc-linux-gnuoldld" && exit 0
647
648 case "${UNAME_MACHINE}" in
649 i?86)
650 VENDOR=pc;
651 ;;
652 *)
653 VENDOR=unknown;
654 ;;
655 esac
d144e1d2 656 # Determine whether the default compiler is a.out or elf
47c130e3 657 cat >$dummy.c <<EOF
714a562f 658#include <features.h>
9266597a 659main(argc, argv)
714a562f
UD
660 int argc;
661 char *argv[];
9266597a
MM
662{
663#ifdef __ELF__
714a562f
UD
664# ifdef __GLIBC__
665# if __GLIBC__ >= 2
666 printf ("%s-${VENDOR}-linux-gnu\n", argv[1]);
667# else
668 printf ("%s-${VENDOR}-linux-gnulibc1\n", argv[1]);
669# endif
670# else
671 printf ("%s-${VENDOR}-linux-gnulibc1\n", argv[1]);
672# endif
9266597a 673#else
714a562f 674 printf ("%s-${VENDOR}-linux-gnuaout\n", argv[1]);
9266597a
MM
675#endif
676 return 0;
677}
678EOF
47c130e3
UD
679 ${CC-cc} $dummy.c -o $dummy 2>/dev/null && ./$dummy "${UNAME_MACHINE}" && rm $dummy.c $dummy && exit 0
680 rm -f $dummy.c $dummy
d144e1d2 681 fi ;;
28f540f4
RM
682# ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. earlier versions
683# are messed up and put the nodename in both sysname and nodename.
d780e42f 684 i?86:DYNIX/ptx:4*:*)
28f540f4
RM
685 echo i386-sequent-sysv4
686 exit 0 ;;
9c2322bc
UD
687 i?86:UNIX_SV:4.2MP:2.*)
688 # Unixware is an offshoot of SVR4, but it has its own version
689 # number series starting with 2...
690 # I am not positive that other SVR4 systems won't match this,
691 # I just have to hope. -- rms.
692 # Use sysv4.2uw... so that sysv4* matches it.
693 echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION}
694 exit 0 ;;
d780e42f 695 i?86:*:4.*:* | i?86:SYSTEM_V:4.*:*)
28f540f4
RM
696 if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
697 echo ${UNAME_MACHINE}-univel-sysv${UNAME_RELEASE}
698 else
20e77fa0 699 echo ${UNAME_MACHINE}-pc-sysv${UNAME_RELEASE}
28f540f4
RM
700 fi
701 exit 0 ;;
d780e42f 702 i?86:*:3.2:*)
820bd50c
RK
703 if test -f /usr/options/cb.name; then
704 UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name`
20e77fa0 705 echo ${UNAME_MACHINE}-pc-isc$UNAME_REL
820bd50c 706 elif /bin/uname -X 2>/dev/null >/dev/null ; then
28f540f4
RM
707 UNAME_REL=`(/bin/uname -X|egrep Release|sed -e 's/.*= //')`
708 (/bin/uname -X|egrep i80486 >/dev/null) && UNAME_MACHINE=i486
8e2e98a2
PB
709 (/bin/uname -X|egrep '^Machine.*Pentium' >/dev/null) \
710 && UNAME_MACHINE=i586
20e77fa0 711 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL
28f540f4 712 else
20e77fa0 713 echo ${UNAME_MACHINE}-pc-sysv32
28f540f4
RM
714 fi
715 exit 0 ;;
47c130e3
UD
716 i?86:UnixWare:*:*)
717 if /bin/uname -X 2>/dev/null >/dev/null ; then
718 (/bin/uname -X|egrep '^Machine.*Pentium' >/dev/null) \
719 && UNAME_MACHINE=i586
720 fi
721 echo ${UNAME_MACHINE}-unixware-${UNAME_RELEASE}-${UNAME_VERSION}
722 exit 0 ;;
907a1bac
UD
723 pc:*:*:*)
724 # uname -m prints for DJGPP always 'pc', but it prints nothing about
725 # the processor, so we play safe by assuming i386.
726 echo i386-pc-msdosdjgpp
727 exit 0 ;;
28f540f4 728 Intel:Mach:3*:*)
20e77fa0 729 echo i386-pc-mach3
28f540f4
RM
730 exit 0 ;;
731 paragon:*:*:*)
732 echo i860-intel-osf1
733 exit 0 ;;
734 i860:*:4.*:*) # i860-SVR4
735 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then
736 echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4
737 else # Add other i860-SVR4 vendors below as they are discovered.
738 echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4
739 fi
740 exit 0 ;;
741 mini*:CTIX:SYS*5:*)
742 # "miniframe"
743 echo m68010-convergent-sysv
744 exit 0 ;;
4398fea0 745 M68*:*:R3V[567]*:*)
28f540f4 746 test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;;
e3ca0de5 747 3[34]??:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 4850:*:4.0:3.0)
b296c233
PB
748 OS_REL=''
749 test -r /etc/.relid \
750 && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
751 /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
752 && echo i486-ncr-sysv4.3${OS_REL} && exit 0
753 /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
754 && echo i586-ncr-sysv4.3${OS_REL} && exit 0 ;;
28f540f4 755 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
b296c233 756 /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
28f540f4 757 && echo i486-ncr-sysv4 && exit 0 ;;
d780e42f
DM
758 m68*:LynxOS:2.*:*)
759 echo m68k-unknown-lynxos${UNAME_RELEASE}
28f540f4
RM
760 exit 0 ;;
761 mc68030:UNIX_System_V:4.*:*)
762 echo m68k-atari-sysv4
763 exit 0 ;;
d780e42f
DM
764 i?86:LynxOS:2.*:*)
765 echo i386-unknown-lynxos${UNAME_RELEASE}
28f540f4 766 exit 0 ;;
d780e42f
DM
767 TSUNAMI:LynxOS:2.*:*)
768 echo sparc-unknown-lynxos${UNAME_RELEASE}
28f540f4 769 exit 0 ;;
d780e42f
DM
770 rs6000:LynxOS:2.*:* | PowerPC:LynxOS:2.*:*)
771 echo rs6000-unknown-lynxos${UNAME_RELEASE}
28f540f4 772 exit 0 ;;
b296c233
PB
773 SM[BE]S:UNIX_SV:*:*)
774 echo mips-dde-sysv${UNAME_RELEASE}
775 exit 0 ;;
28f540f4
RM
776 RM*:SINIX-*:*:*)
777 echo mips-sni-sysv4
778 exit 0 ;;
779 *:SINIX-*:*:*)
780 if uname -p 2>/dev/null >/dev/null ; then
781 UNAME_MACHINE=`(uname -p) 2>/dev/null`
782 echo ${UNAME_MACHINE}-sni-sysv4
783 else
784 echo ns32k-sni-sysv
785 fi
786 exit 0 ;;
42054ddb
RK
787 PENTIUM:CPunix:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort
788 # says <Richard.M.Bartel@ccMail.Census.GOV>
789 echo i586-unisys-sysv4
790 exit 0 ;;
d780e42f
DM
791 *:UNIX_System_V:4*:FTX*)
792 # From Gerald Hewes <hewes@openmarket.com>.
793 # How about differentiating between stratus architectures? -djm
794 echo hppa1.1-stratus-sysv4
795 exit 0 ;;
796 *:*:*:FTX*)
797 # From seanf@swdc.stratus.com.
798 echo i860-stratus-sysv4
799 exit 0 ;;
4505e8c1
I
800 mc68*:A/UX:*:*)
801 echo m68k-apple-aux${UNAME_RELEASE}
802 exit 0 ;;
f9a73ae1
UD
803 news*:NEWS-OS:*:6*)
804 echo mips-sony-newsos6
805 exit 0 ;;
47c130e3 806 R3000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R4000:UNIX_SV:*:*)
e5ba41ce
I
807 if [ -d /usr/nec ]; then
808 echo mips-nec-sysv${UNAME_RELEASE}
809 else
810 echo mips-unknown-sysv${UNAME_RELEASE}
811 fi
812 exit 0 ;;
47c130e3
UD
813 BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only.
814 echo powerpc-be-beos
815 exit 0 ;;
816 BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only.
817 echo powerpc-apple-beos
818 exit 0 ;;
819 BePC:BeOS:*:*) # BeOS running on Intel PC compatible.
820 echo i586-pc-beos
821 exit 0 ;;
822 SX-4:SUPER-UX:*:*)
823 echo sx4-nec-superux${UNAME_RELEASE}
824 exit 0 ;;
825 SX-5:SUPER-UX:*:*)
826 echo sx5-nec-superux${UNAME_RELEASE}
827 exit 0 ;;
828 Power*:Rhapsody:*:*)
829 echo powerpc-apple-rhapsody${UNAME_RELEASE}
830 exit 0 ;;
831 *:Rhapsody:*:*)
832 echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE}
833 exit 0 ;;
28f540f4
RM
834esac
835
836#echo '(No uname command or uname output not recognized.)' 1>&2
837#echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2
838
47c130e3 839cat >$dummy.c <<EOF
e7233b09
RK
840#ifdef _SEQUENT_
841# include <sys/types.h>
842# include <sys/utsname.h>
843#endif
28f540f4
RM
844main ()
845{
846#if defined (sony)
847#if defined (MIPSEB)
848 /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed,
849 I don't know.... */
850 printf ("mips-sony-bsd\n"); exit (0);
851#else
852#include <sys/param.h>
853 printf ("m68k-sony-newsos%s\n",
854#ifdef NEWSOS4
855 "4"
856#else
857 ""
858#endif
859 ); exit (0);
860#endif
861#endif
862
863#if defined (__arm) && defined (__acorn) && defined (__unix)
864 printf ("arm-acorn-riscix"); exit (0);
865#endif
866
867#if defined (hp300) && !defined (hpux)
868 printf ("m68k-hp-bsd\n"); exit (0);
869#endif
870
871#if defined (NeXT)
872#if !defined (__ARCHITECTURE__)
873#define __ARCHITECTURE__ "m68k"
874#endif
875 int version;
876 version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`;
47c130e3
UD
877 if (version < 4)
878 printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version);
879 else
880 printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version);
28f540f4
RM
881 exit (0);
882#endif
883
884#if defined (MULTIMAX) || defined (n16)
885#if defined (UMAXV)
886 printf ("ns32k-encore-sysv\n"); exit (0);
887#else
888#if defined (CMU)
889 printf ("ns32k-encore-mach\n"); exit (0);
890#else
891 printf ("ns32k-encore-bsd\n"); exit (0);
892#endif
893#endif
894#endif
895
896#if defined (__386BSD__)
20e77fa0 897 printf ("i386-pc-bsd\n"); exit (0);
28f540f4
RM
898#endif
899
900#if defined (sequent)
901#if defined (i386)
902 printf ("i386-sequent-dynix\n"); exit (0);
903#endif
904#if defined (ns32000)
905 printf ("ns32k-sequent-dynix\n"); exit (0);
906#endif
907#endif
908
909#if defined (_SEQUENT_)
e7233b09
RK
910 struct utsname un;
911
912 uname(&un);
913
914 if (strncmp(un.version, "V2", 2) == 0) {
915 printf ("i386-sequent-ptx2\n"); exit (0);
916 }
917 if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */
918 printf ("i386-sequent-ptx1\n"); exit (0);
919 }
920 printf ("i386-sequent-ptx\n"); exit (0);
921
28f540f4
RM
922#endif
923
924#if defined (vax)
925#if !defined (ultrix)
926 printf ("vax-dec-bsd\n"); exit (0);
927#else
928 printf ("vax-dec-ultrix\n"); exit (0);
929#endif
930#endif
931
932#if defined (alliant) && defined (i860)
933 printf ("i860-alliant-bsd\n"); exit (0);
934#endif
935
936 exit (1);
937}
938EOF
939
47c130e3
UD
940${CC-cc} $dummy.c -o $dummy 2>/dev/null && ./$dummy && rm $dummy.c $dummy && exit 0
941rm -f $dummy.c $dummy
28f540f4
RM
942
943# Apollos put the system type in the environment.
944
945test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit 0; }
946
947# Convex versions that predate uname can use getsysinfo(1)
948
949if [ -x /usr/convex/getsysinfo ]
950then
951 case `getsysinfo -f cpu_type` in
952 c1*)
953 echo c1-convex-bsd
954 exit 0 ;;
955 c2*)
956 if getsysinfo -f scalar_acc
957 then echo c32-convex-bsd
958 else echo c2-convex-bsd
959 fi
960 exit 0 ;;
961 c34*)
962 echo c34-convex-bsd
963 exit 0 ;;
964 c38*)
965 echo c38-convex-bsd
966 exit 0 ;;
967 c4*)
968 echo c4-convex-bsd
969 exit 0 ;;
970 esac
971fi
972
973#echo '(Unable to guess system type)' 1>&2
974
975exit 1