config.guess: Remove SH5 support.
[gcc.git] / libjava / classpath / config.guess
1 #! /bin/sh
2 # Attempt to guess a canonical system name.
3 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
5 # 2011 Free Software Foundation, Inc.
6
7 timestamp='2011-06-03'
8
9 # This file is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 2 of the License, or
12 # (at your option) any later version.
13 #
14 # This program is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 # General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write to the Free Software
21 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
22 # 02110-1301, USA.
23 #
24 # As a special exception to the GNU General Public License, if you
25 # distribute this file as part of a program that contains a
26 # configuration script generated by Autoconf, you may include it under
27 # the same distribution terms that you use for the rest of that program.
28
29
30 # Originally written by Per Bothner. Please send patches (context
31 # diff format) to <config-patches@gnu.org> and include a ChangeLog
32 # entry.
33 #
34 # This script attempts to guess a canonical system name similar to
35 # config.sub. If it succeeds, it prints the system name on stdout, and
36 # exits with 0. Otherwise, it exits with 1.
37 #
38 # You can get the latest version of this script from:
39 # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
40
41 me=`echo "$0" | sed -e 's,.*/,,'`
42
43 usage="\
44 Usage: $0 [OPTION]
45
46 Output the configuration name of the system \`$me' is run on.
47
48 Operation modes:
49 -h, --help print this help, then exit
50 -t, --time-stamp print date of last modification, then exit
51 -v, --version print version number, then exit
52
53 Report bugs and patches to <config-patches@gnu.org>."
54
55 version="\
56 GNU config.guess ($timestamp)
57
58 Originally written by Per Bothner.
59 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
60 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free
61 Software Foundation, Inc.
62
63 This is free software; see the source for copying conditions. There is NO
64 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
65
66 help="
67 Try \`$me --help' for more information."
68
69 # Parse command line
70 while test $# -gt 0 ; do
71 case $1 in
72 --time-stamp | --time* | -t )
73 echo "$timestamp" ; exit ;;
74 --version | -v )
75 echo "$version" ; exit ;;
76 --help | --h* | -h )
77 echo "$usage"; exit ;;
78 -- ) # Stop option processing
79 shift; break ;;
80 - ) # Use stdin as input.
81 break ;;
82 -* )
83 echo "$me: invalid option $1$help" >&2
84 exit 1 ;;
85 * )
86 break ;;
87 esac
88 done
89
90 if test $# != 0; then
91 echo "$me: too many arguments$help" >&2
92 exit 1
93 fi
94
95 trap 'exit 1' 1 2 15
96
97 # CC_FOR_BUILD -- compiler used by this script. Note that the use of a
98 # compiler to aid in system detection is discouraged as it requires
99 # temporary files to be created and, as you can see below, it is a
100 # headache to deal with in a portable fashion.
101
102 # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still
103 # use `HOST_CC' if defined, but it is deprecated.
104
105 # Portable tmp directory creation inspired by the Autoconf team.
106
107 set_cc_for_build='
108 trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ;
109 trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ;
110 : ${TMPDIR=/tmp} ;
111 { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
112 { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||
113 { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } ||
114 { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ;
115 dummy=$tmp/dummy ;
116 tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ;
117 case $CC_FOR_BUILD,$HOST_CC,$CC in
118 ,,) echo "int x;" > $dummy.c ;
119 for c in cc gcc c89 c99 ; do
120 if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then
121 CC_FOR_BUILD="$c"; break ;
122 fi ;
123 done ;
124 if test x"$CC_FOR_BUILD" = x ; then
125 CC_FOR_BUILD=no_compiler_found ;
126 fi
127 ;;
128 ,,*) CC_FOR_BUILD=$CC ;;
129 ,*,*) CC_FOR_BUILD=$HOST_CC ;;
130 esac ; set_cc_for_build= ;'
131
132 # This is needed to find uname on a Pyramid OSx when run in the BSD universe.
133 # (ghazi@noc.rutgers.edu 1994-08-24)
134 if (test -f /.attbin/uname) >/dev/null 2>&1 ; then
135 PATH=$PATH:/.attbin ; export PATH
136 fi
137
138 UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown
139 UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown
140 UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown
141 UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
142
143 # Note: order is significant - the case branches are not exclusive.
144
145 case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
146 *:NetBSD:*:*)
147 # NetBSD (nbsd) targets should (where applicable) match one or
148 # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*,
149 # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently
150 # switched to ELF, *-*-netbsd* would select the old
151 # object file format. This provides both forward
152 # compatibility and a consistent mechanism for selecting the
153 # object file format.
154 #
155 # Note: NetBSD doesn't particularly care about the vendor
156 # portion of the name. We always set it to "unknown".
157 sysctl="sysctl -n hw.machine_arch"
158 UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \
159 /usr/sbin/$sysctl 2>/dev/null || echo unknown)`
160 case "${UNAME_MACHINE_ARCH}" in
161 armeb) machine=armeb-unknown ;;
162 arm*) machine=arm-unknown ;;
163 sh3el) machine=shl-unknown ;;
164 sh3eb) machine=sh-unknown ;;
165 *) machine=${UNAME_MACHINE_ARCH}-unknown ;;
166 esac
167 # The Operating System including object format, if it has switched
168 # to ELF recently, or will in the future.
169 case "${UNAME_MACHINE_ARCH}" in
170 arm*|i386|m68k|ns32k|sh3*|sparc|vax)
171 eval $set_cc_for_build
172 if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \
173 | grep -q __ELF__
174 then
175 # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout).
176 # Return netbsd for either. FIX?
177 os=netbsd
178 else
179 os=netbsdelf
180 fi
181 ;;
182 *)
183 os=netbsd
184 ;;
185 esac
186 # The OS release
187 # Debian GNU/NetBSD machines have a different userland, and
188 # thus, need a distinct triplet. However, they do not need
189 # kernel version information, so it can be replaced with a
190 # suitable tag, in the style of linux-gnu.
191 case "${UNAME_VERSION}" in
192 Debian*)
193 release='-gnu'
194 ;;
195 *)
196 release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
197 ;;
198 esac
199 # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM:
200 # contains redundant information, the shorter form:
201 # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used.
202 echo "${machine}-${os}${release}"
203 exit ;;
204 *:OpenBSD:*:*)
205 UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'`
206 echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE}
207 exit ;;
208 *:ekkoBSD:*:*)
209 echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE}
210 exit ;;
211 *:SolidBSD:*:*)
212 echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE}
213 exit ;;
214 macppc:MirBSD:*:*)
215 echo powerpc-unknown-mirbsd${UNAME_RELEASE}
216 exit ;;
217 *:MirBSD:*:*)
218 echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE}
219 exit ;;
220 alpha:OSF1:*:*)
221 case $UNAME_RELEASE in
222 *4.0)
223 UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
224 ;;
225 *5.*)
226 UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'`
227 ;;
228 esac
229 # According to Compaq, /usr/sbin/psrinfo has been available on
230 # OSF/1 and Tru64 systems produced since 1995. I hope that
231 # covers most systems running today. This code pipes the CPU
232 # types through head -n 1, so we only detect the type of CPU 0.
233 ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1`
234 case "$ALPHA_CPU_TYPE" in
235 "EV4 (21064)")
236 UNAME_MACHINE="alpha" ;;
237 "EV4.5 (21064)")
238 UNAME_MACHINE="alpha" ;;
239 "LCA4 (21066/21068)")
240 UNAME_MACHINE="alpha" ;;
241 "EV5 (21164)")
242 UNAME_MACHINE="alphaev5" ;;
243 "EV5.6 (21164A)")
244 UNAME_MACHINE="alphaev56" ;;
245 "EV5.6 (21164PC)")
246 UNAME_MACHINE="alphapca56" ;;
247 "EV5.7 (21164PC)")
248 UNAME_MACHINE="alphapca57" ;;
249 "EV6 (21264)")
250 UNAME_MACHINE="alphaev6" ;;
251 "EV6.7 (21264A)")
252 UNAME_MACHINE="alphaev67" ;;
253 "EV6.8CB (21264C)")
254 UNAME_MACHINE="alphaev68" ;;
255 "EV6.8AL (21264B)")
256 UNAME_MACHINE="alphaev68" ;;
257 "EV6.8CX (21264D)")
258 UNAME_MACHINE="alphaev68" ;;
259 "EV6.9A (21264/EV69A)")
260 UNAME_MACHINE="alphaev69" ;;
261 "EV7 (21364)")
262 UNAME_MACHINE="alphaev7" ;;
263 "EV7.9 (21364A)")
264 UNAME_MACHINE="alphaev79" ;;
265 esac
266 # A Pn.n version is a patched version.
267 # A Vn.n version is a released version.
268 # A Tn.n version is a released field test version.
269 # A Xn.n version is an unreleased experimental baselevel.
270 # 1.2 uses "1.2" for uname -r.
271 echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
272 # Reset EXIT trap before exiting to avoid spurious non-zero exit code.
273 exitcode=$?
274 trap '' 0
275 exit $exitcode ;;
276 Alpha\ *:Windows_NT*:*)
277 # How do we know it's Interix rather than the generic POSIX subsystem?
278 # Should we change UNAME_MACHINE based on the output of uname instead
279 # of the specific Alpha model?
280 echo alpha-pc-interix
281 exit ;;
282 21064:Windows_NT:50:3)
283 echo alpha-dec-winnt3.5
284 exit ;;
285 Amiga*:UNIX_System_V:4.0:*)
286 echo m68k-unknown-sysv4
287 exit ;;
288 *:[Aa]miga[Oo][Ss]:*:*)
289 echo ${UNAME_MACHINE}-unknown-amigaos
290 exit ;;
291 *:[Mm]orph[Oo][Ss]:*:*)
292 echo ${UNAME_MACHINE}-unknown-morphos
293 exit ;;
294 *:OS/390:*:*)
295 echo i370-ibm-openedition
296 exit ;;
297 *:z/VM:*:*)
298 echo s390-ibm-zvmoe
299 exit ;;
300 *:OS400:*:*)
301 echo powerpc-ibm-os400
302 exit ;;
303 arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*)
304 echo arm-acorn-riscix${UNAME_RELEASE}
305 exit ;;
306 arm:riscos:*:*|arm:RISCOS:*:*)
307 echo arm-unknown-riscos
308 exit ;;
309 SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*)
310 echo hppa1.1-hitachi-hiuxmpp
311 exit ;;
312 Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*)
313 # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE.
314 if test "`(/bin/universe) 2>/dev/null`" = att ; then
315 echo pyramid-pyramid-sysv3
316 else
317 echo pyramid-pyramid-bsd
318 fi
319 exit ;;
320 NILE*:*:*:dcosx)
321 echo pyramid-pyramid-svr4
322 exit ;;
323 DRS?6000:unix:4.0:6*)
324 echo sparc-icl-nx6
325 exit ;;
326 DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*)
327 case `/usr/bin/uname -p` in
328 sparc) echo sparc-icl-nx7; exit ;;
329 esac ;;
330 s390x:SunOS:*:*)
331 echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
332 exit ;;
333 sun4H:SunOS:5.*:*)
334 echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
335 exit ;;
336 sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
337 echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
338 exit ;;
339 i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*)
340 echo i386-pc-auroraux${UNAME_RELEASE}
341 exit ;;
342 i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)
343 eval $set_cc_for_build
344 SUN_ARCH="i386"
345 # If there is a compiler, see if it is configured for 64-bit objects.
346 # Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
347 # This test works for both compilers.
348 if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then
349 if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
350 (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \
351 grep IS_64BIT_ARCH >/dev/null
352 then
353 SUN_ARCH="x86_64"
354 fi
355 fi
356 echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
357 exit ;;
358 sun4*:SunOS:6*:*)
359 # According to config.sub, this is the proper way to canonicalize
360 # SunOS6. Hard to guess exactly what SunOS6 will be like, but
361 # it's likely to be more like Solaris than SunOS4.
362 echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
363 exit ;;
364 sun4*:SunOS:*:*)
365 case "`/usr/bin/arch -k`" in
366 Series*|S4*)
367 UNAME_RELEASE=`uname -v`
368 ;;
369 esac
370 # Japanese Language versions have a version number like `4.1.3-JL'.
371 echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'`
372 exit ;;
373 sun3*:SunOS:*:*)
374 echo m68k-sun-sunos${UNAME_RELEASE}
375 exit ;;
376 sun*:*:4.2BSD:*)
377 UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
378 test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3
379 case "`/bin/arch`" in
380 sun3)
381 echo m68k-sun-sunos${UNAME_RELEASE}
382 ;;
383 sun4)
384 echo sparc-sun-sunos${UNAME_RELEASE}
385 ;;
386 esac
387 exit ;;
388 aushp:SunOS:*:*)
389 echo sparc-auspex-sunos${UNAME_RELEASE}
390 exit ;;
391 # The situation for MiNT is a little confusing. The machine name
392 # can be virtually everything (everything which is not
393 # "atarist" or "atariste" at least should have a processor
394 # > m68000). The system name ranges from "MiNT" over "FreeMiNT"
395 # to the lowercase version "mint" (or "freemint"). Finally
396 # the system name "TOS" denotes a system which is actually not
397 # MiNT. But MiNT is downward compatible to TOS, so this should
398 # be no problem.
399 atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
400 echo m68k-atari-mint${UNAME_RELEASE}
401 exit ;;
402 atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
403 echo m68k-atari-mint${UNAME_RELEASE}
404 exit ;;
405 *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
406 echo m68k-atari-mint${UNAME_RELEASE}
407 exit ;;
408 milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
409 echo m68k-milan-mint${UNAME_RELEASE}
410 exit ;;
411 hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
412 echo m68k-hades-mint${UNAME_RELEASE}
413 exit ;;
414 *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
415 echo m68k-unknown-mint${UNAME_RELEASE}
416 exit ;;
417 m68k:machten:*:*)
418 echo m68k-apple-machten${UNAME_RELEASE}
419 exit ;;
420 powerpc:machten:*:*)
421 echo powerpc-apple-machten${UNAME_RELEASE}
422 exit ;;
423 RISC*:Mach:*:*)
424 echo mips-dec-mach_bsd4.3
425 exit ;;
426 RISC*:ULTRIX:*:*)
427 echo mips-dec-ultrix${UNAME_RELEASE}
428 exit ;;
429 VAX*:ULTRIX*:*:*)
430 echo vax-dec-ultrix${UNAME_RELEASE}
431 exit ;;
432 2020:CLIX:*:* | 2430:CLIX:*:*)
433 echo clipper-intergraph-clix${UNAME_RELEASE}
434 exit ;;
435 mips:*:*:UMIPS | mips:*:*:RISCos)
436 eval $set_cc_for_build
437 sed 's/^ //' << EOF >$dummy.c
438 #ifdef __cplusplus
439 #include <stdio.h> /* for printf() prototype */
440 int main (int argc, char *argv[]) {
441 #else
442 int main (argc, argv) int argc; char *argv[]; {
443 #endif
444 #if defined (host_mips) && defined (MIPSEB)
445 #if defined (SYSTYPE_SYSV)
446 printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0);
447 #endif
448 #if defined (SYSTYPE_SVR4)
449 printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0);
450 #endif
451 #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD)
452 printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0);
453 #endif
454 #endif
455 exit (-1);
456 }
457 EOF
458 $CC_FOR_BUILD -o $dummy $dummy.c &&
459 dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` &&
460 SYSTEM_NAME=`$dummy $dummyarg` &&
461 { echo "$SYSTEM_NAME"; exit; }
462 echo mips-mips-riscos${UNAME_RELEASE}
463 exit ;;
464 Motorola:PowerMAX_OS:*:*)
465 echo powerpc-motorola-powermax
466 exit ;;
467 Motorola:*:4.3:PL8-*)
468 echo powerpc-harris-powermax
469 exit ;;
470 Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*)
471 echo powerpc-harris-powermax
472 exit ;;
473 Night_Hawk:Power_UNIX:*:*)
474 echo powerpc-harris-powerunix
475 exit ;;
476 m88k:CX/UX:7*:*)
477 echo m88k-harris-cxux7
478 exit ;;
479 m88k:*:4*:R4*)
480 echo m88k-motorola-sysv4
481 exit ;;
482 m88k:*:3*:R3*)
483 echo m88k-motorola-sysv3
484 exit ;;
485 AViiON:dgux:*:*)
486 # DG/UX returns AViiON for all architectures
487 UNAME_PROCESSOR=`/usr/bin/uname -p`
488 if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ]
489 then
490 if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \
491 [ ${TARGET_BINARY_INTERFACE}x = x ]
492 then
493 echo m88k-dg-dgux${UNAME_RELEASE}
494 else
495 echo m88k-dg-dguxbcs${UNAME_RELEASE}
496 fi
497 else
498 echo i586-dg-dgux${UNAME_RELEASE}
499 fi
500 exit ;;
501 M88*:DolphinOS:*:*) # DolphinOS (SVR3)
502 echo m88k-dolphin-sysv3
503 exit ;;
504 M88*:*:R3*:*)
505 # Delta 88k system running SVR3
506 echo m88k-motorola-sysv3
507 exit ;;
508 XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3)
509 echo m88k-tektronix-sysv3
510 exit ;;
511 Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD)
512 echo m68k-tektronix-bsd
513 exit ;;
514 *:IRIX*:*:*)
515 echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'`
516 exit ;;
517 ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX.
518 echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id
519 exit ;; # Note that: echo "'`uname -s`'" gives 'AIX '
520 i*86:AIX:*:*)
521 echo i386-ibm-aix
522 exit ;;
523 ia64:AIX:*:*)
524 if [ -x /usr/bin/oslevel ] ; then
525 IBM_REV=`/usr/bin/oslevel`
526 else
527 IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}
528 fi
529 echo ${UNAME_MACHINE}-ibm-aix${IBM_REV}
530 exit ;;
531 *:AIX:2:3)
532 if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then
533 eval $set_cc_for_build
534 sed 's/^ //' << EOF >$dummy.c
535 #include <sys/systemcfg.h>
536
537 main()
538 {
539 if (!__power_pc())
540 exit(1);
541 puts("powerpc-ibm-aix3.2.5");
542 exit(0);
543 }
544 EOF
545 if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy`
546 then
547 echo "$SYSTEM_NAME"
548 else
549 echo rs6000-ibm-aix3.2.5
550 fi
551 elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then
552 echo rs6000-ibm-aix3.2.4
553 else
554 echo rs6000-ibm-aix3.2
555 fi
556 exit ;;
557 *:AIX:*:[4567])
558 IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`
559 if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then
560 IBM_ARCH=rs6000
561 else
562 IBM_ARCH=powerpc
563 fi
564 if [ -x /usr/bin/oslevel ] ; then
565 IBM_REV=`/usr/bin/oslevel`
566 else
567 IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}
568 fi
569 echo ${IBM_ARCH}-ibm-aix${IBM_REV}
570 exit ;;
571 *:AIX:*:*)
572 echo rs6000-ibm-aix
573 exit ;;
574 ibmrt:4.4BSD:*|romp-ibm:BSD:*)
575 echo romp-ibm-bsd4.4
576 exit ;;
577 ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and
578 echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to
579 exit ;; # report: romp-ibm BSD 4.3
580 *:BOSX:*:*)
581 echo rs6000-bull-bosx
582 exit ;;
583 DPX/2?00:B.O.S.:*:*)
584 echo m68k-bull-sysv3
585 exit ;;
586 9000/[34]??:4.3bsd:1.*:*)
587 echo m68k-hp-bsd
588 exit ;;
589 hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*)
590 echo m68k-hp-bsd4.4
591 exit ;;
592 9000/[34678]??:HP-UX:*:*)
593 HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
594 case "${UNAME_MACHINE}" in
595 9000/31? ) HP_ARCH=m68000 ;;
596 9000/[34]?? ) HP_ARCH=m68k ;;
597 9000/[678][0-9][0-9])
598 if [ -x /usr/bin/getconf ]; then
599 sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null`
600 sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null`
601 case "${sc_cpu_version}" in
602 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0
603 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1
604 532) # CPU_PA_RISC2_0
605 case "${sc_kernel_bits}" in
606 32) HP_ARCH="hppa2.0n" ;;
607 64) HP_ARCH="hppa2.0w" ;;
608 '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20
609 esac ;;
610 esac
611 fi
612 if [ "${HP_ARCH}" = "" ]; then
613 eval $set_cc_for_build
614 sed 's/^ //' << EOF >$dummy.c
615
616 #define _HPUX_SOURCE
617 #include <stdlib.h>
618 #include <unistd.h>
619
620 int main ()
621 {
622 #if defined(_SC_KERNEL_BITS)
623 long bits = sysconf(_SC_KERNEL_BITS);
624 #endif
625 long cpu = sysconf (_SC_CPU_VERSION);
626
627 switch (cpu)
628 {
629 case CPU_PA_RISC1_0: puts ("hppa1.0"); break;
630 case CPU_PA_RISC1_1: puts ("hppa1.1"); break;
631 case CPU_PA_RISC2_0:
632 #if defined(_SC_KERNEL_BITS)
633 switch (bits)
634 {
635 case 64: puts ("hppa2.0w"); break;
636 case 32: puts ("hppa2.0n"); break;
637 default: puts ("hppa2.0"); break;
638 } break;
639 #else /* !defined(_SC_KERNEL_BITS) */
640 puts ("hppa2.0"); break;
641 #endif
642 default: puts ("hppa1.0"); break;
643 }
644 exit (0);
645 }
646 EOF
647 (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy`
648 test -z "$HP_ARCH" && HP_ARCH=hppa
649 fi ;;
650 esac
651 if [ ${HP_ARCH} = "hppa2.0w" ]
652 then
653 eval $set_cc_for_build
654
655 # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating
656 # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler
657 # generating 64-bit code. GNU and HP use different nomenclature:
658 #
659 # $ CC_FOR_BUILD=cc ./config.guess
660 # => hppa2.0w-hp-hpux11.23
661 # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess
662 # => hppa64-hp-hpux11.23
663
664 if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) |
665 grep -q __LP64__
666 then
667 HP_ARCH="hppa2.0w"
668 else
669 HP_ARCH="hppa64"
670 fi
671 fi
672 echo ${HP_ARCH}-hp-hpux${HPUX_REV}
673 exit ;;
674 ia64:HP-UX:*:*)
675 HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
676 echo ia64-hp-hpux${HPUX_REV}
677 exit ;;
678 3050*:HI-UX:*:*)
679 eval $set_cc_for_build
680 sed 's/^ //' << EOF >$dummy.c
681 #include <unistd.h>
682 int
683 main ()
684 {
685 long cpu = sysconf (_SC_CPU_VERSION);
686 /* The order matters, because CPU_IS_HP_MC68K erroneously returns
687 true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct
688 results, however. */
689 if (CPU_IS_PA_RISC (cpu))
690 {
691 switch (cpu)
692 {
693 case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break;
694 case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break;
695 case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break;
696 default: puts ("hppa-hitachi-hiuxwe2"); break;
697 }
698 }
699 else if (CPU_IS_HP_MC68K (cpu))
700 puts ("m68k-hitachi-hiuxwe2");
701 else puts ("unknown-hitachi-hiuxwe2");
702 exit (0);
703 }
704 EOF
705 $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` &&
706 { echo "$SYSTEM_NAME"; exit; }
707 echo unknown-hitachi-hiuxwe2
708 exit ;;
709 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* )
710 echo hppa1.1-hp-bsd
711 exit ;;
712 9000/8??:4.3bsd:*:*)
713 echo hppa1.0-hp-bsd
714 exit ;;
715 *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*)
716 echo hppa1.0-hp-mpeix
717 exit ;;
718 hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* )
719 echo hppa1.1-hp-osf
720 exit ;;
721 hp8??:OSF1:*:*)
722 echo hppa1.0-hp-osf
723 exit ;;
724 i*86:OSF1:*:*)
725 if [ -x /usr/sbin/sysversion ] ; then
726 echo ${UNAME_MACHINE}-unknown-osf1mk
727 else
728 echo ${UNAME_MACHINE}-unknown-osf1
729 fi
730 exit ;;
731 parisc*:Lites*:*:*)
732 echo hppa1.1-hp-lites
733 exit ;;
734 C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)
735 echo c1-convex-bsd
736 exit ;;
737 C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*)
738 if getsysinfo -f scalar_acc
739 then echo c32-convex-bsd
740 else echo c2-convex-bsd
741 fi
742 exit ;;
743 C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*)
744 echo c34-convex-bsd
745 exit ;;
746 C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*)
747 echo c38-convex-bsd
748 exit ;;
749 C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*)
750 echo c4-convex-bsd
751 exit ;;
752 CRAY*Y-MP:*:*:*)
753 echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
754 exit ;;
755 CRAY*[A-Z]90:*:*:*)
756 echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \
757 | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \
758 -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \
759 -e 's/\.[^.]*$/.X/'
760 exit ;;
761 CRAY*TS:*:*:*)
762 echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
763 exit ;;
764 CRAY*T3E:*:*:*)
765 echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
766 exit ;;
767 CRAY*SV1:*:*:*)
768 echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
769 exit ;;
770 *:UNICOS/mp:*:*)
771 echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
772 exit ;;
773 F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*)
774 FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
775 FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
776 FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`
777 echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
778 exit ;;
779 5000:UNIX_System_V:4.*:*)
780 FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
781 FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'`
782 echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
783 exit ;;
784 i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*)
785 echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE}
786 exit ;;
787 sparc*:BSD/OS:*:*)
788 echo sparc-unknown-bsdi${UNAME_RELEASE}
789 exit ;;
790 *:BSD/OS:*:*)
791 echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
792 exit ;;
793 *:FreeBSD:*:*)
794 case ${UNAME_MACHINE} in
795 pc98)
796 echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
797 amd64)
798 echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
799 *)
800 echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
801 esac
802 exit ;;
803 i*:CYGWIN*:*)
804 echo ${UNAME_MACHINE}-pc-cygwin
805 exit ;;
806 *:MINGW*:*)
807 echo ${UNAME_MACHINE}-pc-mingw32
808 exit ;;
809 i*:windows32*:*)
810 # uname -m includes "-pc" on this system.
811 echo ${UNAME_MACHINE}-mingw32
812 exit ;;
813 i*:PW*:*)
814 echo ${UNAME_MACHINE}-pc-pw32
815 exit ;;
816 *:Interix*:*)
817 case ${UNAME_MACHINE} in
818 x86)
819 echo i586-pc-interix${UNAME_RELEASE}
820 exit ;;
821 authenticamd | genuineintel | EM64T)
822 echo x86_64-unknown-interix${UNAME_RELEASE}
823 exit ;;
824 IA64)
825 echo ia64-unknown-interix${UNAME_RELEASE}
826 exit ;;
827 esac ;;
828 [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
829 echo i${UNAME_MACHINE}-pc-mks
830 exit ;;
831 8664:Windows_NT:*)
832 echo x86_64-pc-mks
833 exit ;;
834 i*:Windows_NT*:* | Pentium*:Windows_NT*:*)
835 # How do we know it's Interix rather than the generic POSIX subsystem?
836 # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we
837 # UNAME_MACHINE based on the output of uname instead of i386?
838 echo i586-pc-interix
839 exit ;;
840 i*:UWIN*:*)
841 echo ${UNAME_MACHINE}-pc-uwin
842 exit ;;
843 amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*)
844 echo x86_64-unknown-cygwin
845 exit ;;
846 p*:CYGWIN*:*)
847 echo powerpcle-unknown-cygwin
848 exit ;;
849 prep*:SunOS:5.*:*)
850 echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
851 exit ;;
852 *:GNU:*:*)
853 # the GNU system
854 echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
855 exit ;;
856 *:GNU/*:*:*)
857 # other systems with GNU libc and userland
858 echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu
859 exit ;;
860 i*86:Minix:*:*)
861 echo ${UNAME_MACHINE}-pc-minix
862 exit ;;
863 alpha:Linux:*:*)
864 case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
865 EV5) UNAME_MACHINE=alphaev5 ;;
866 EV56) UNAME_MACHINE=alphaev56 ;;
867 PCA56) UNAME_MACHINE=alphapca56 ;;
868 PCA57) UNAME_MACHINE=alphapca56 ;;
869 EV6) UNAME_MACHINE=alphaev6 ;;
870 EV67) UNAME_MACHINE=alphaev67 ;;
871 EV68*) UNAME_MACHINE=alphaev68 ;;
872 esac
873 objdump --private-headers /bin/sh | grep -q ld.so.1
874 if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi
875 echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC}
876 exit ;;
877 arm*:Linux:*:*)
878 eval $set_cc_for_build
879 if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \
880 | grep -q __ARM_EABI__
881 then
882 echo ${UNAME_MACHINE}-unknown-linux-gnu
883 else
884 if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \
885 | grep -q __ARM_PCS_VFP
886 then
887 echo ${UNAME_MACHINE}-unknown-linux-gnueabi
888 else
889 echo ${UNAME_MACHINE}-unknown-linux-gnueabihf
890 fi
891 fi
892 exit ;;
893 avr32*:Linux:*:*)
894 echo ${UNAME_MACHINE}-unknown-linux-gnu
895 exit ;;
896 cris:Linux:*:*)
897 echo cris-axis-linux-gnu
898 exit ;;
899 crisv32:Linux:*:*)
900 echo crisv32-axis-linux-gnu
901 exit ;;
902 frv:Linux:*:*)
903 echo frv-unknown-linux-gnu
904 exit ;;
905 i*86:Linux:*:*)
906 LIBC=gnu
907 eval $set_cc_for_build
908 sed 's/^ //' << EOF >$dummy.c
909 #ifdef __dietlibc__
910 LIBC=dietlibc
911 #endif
912 EOF
913 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'`
914 echo "${UNAME_MACHINE}-pc-linux-${LIBC}"
915 exit ;;
916 ia64:Linux:*:*)
917 echo ${UNAME_MACHINE}-unknown-linux-gnu
918 exit ;;
919 m32r*:Linux:*:*)
920 echo ${UNAME_MACHINE}-unknown-linux-gnu
921 exit ;;
922 m68*:Linux:*:*)
923 echo ${UNAME_MACHINE}-unknown-linux-gnu
924 exit ;;
925 mips:Linux:*:* | mips64:Linux:*:*)
926 eval $set_cc_for_build
927 sed 's/^ //' << EOF >$dummy.c
928 #undef CPU
929 #undef ${UNAME_MACHINE}
930 #undef ${UNAME_MACHINE}el
931 #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL)
932 CPU=${UNAME_MACHINE}el
933 #else
934 #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB)
935 CPU=${UNAME_MACHINE}
936 #else
937 CPU=
938 #endif
939 #endif
940 EOF
941 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'`
942 test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
943 ;;
944 or32:Linux:*:*)
945 echo or32-unknown-linux-gnu
946 exit ;;
947 padre:Linux:*:*)
948 echo sparc-unknown-linux-gnu
949 exit ;;
950 parisc64:Linux:*:* | hppa64:Linux:*:*)
951 echo hppa64-unknown-linux-gnu
952 exit ;;
953 parisc:Linux:*:* | hppa:Linux:*:*)
954 # Look for CPU level
955 case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in
956 PA7*) echo hppa1.1-unknown-linux-gnu ;;
957 PA8*) echo hppa2.0-unknown-linux-gnu ;;
958 *) echo hppa-unknown-linux-gnu ;;
959 esac
960 exit ;;
961 ppc64:Linux:*:*)
962 echo powerpc64-unknown-linux-gnu
963 exit ;;
964 ppc:Linux:*:*)
965 echo powerpc-unknown-linux-gnu
966 exit ;;
967 s390:Linux:*:* | s390x:Linux:*:*)
968 echo ${UNAME_MACHINE}-ibm-linux
969 exit ;;
970 sh*:Linux:*:*)
971 echo ${UNAME_MACHINE}-unknown-linux-gnu
972 exit ;;
973 sparc:Linux:*:* | sparc64:Linux:*:*)
974 echo ${UNAME_MACHINE}-unknown-linux-gnu
975 exit ;;
976 tile*:Linux:*:*)
977 echo ${UNAME_MACHINE}-unknown-linux-gnu
978 exit ;;
979 vax:Linux:*:*)
980 echo ${UNAME_MACHINE}-dec-linux-gnu
981 exit ;;
982 x86_64:Linux:*:*)
983 echo x86_64-unknown-linux-gnu
984 exit ;;
985 xtensa*:Linux:*:*)
986 echo ${UNAME_MACHINE}-unknown-linux-gnu
987 exit ;;
988 i*86:DYNIX/ptx:4*:*)
989 # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.
990 # earlier versions are messed up and put the nodename in both
991 # sysname and nodename.
992 echo i386-sequent-sysv4
993 exit ;;
994 i*86:UNIX_SV:4.2MP:2.*)
995 # Unixware is an offshoot of SVR4, but it has its own version
996 # number series starting with 2...
997 # I am not positive that other SVR4 systems won't match this,
998 # I just have to hope. -- rms.
999 # Use sysv4.2uw... so that sysv4* matches it.
1000 echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION}
1001 exit ;;
1002 i*86:OS/2:*:*)
1003 # If we were able to find `uname', then EMX Unix compatibility
1004 # is probably installed.
1005 echo ${UNAME_MACHINE}-pc-os2-emx
1006 exit ;;
1007 i*86:XTS-300:*:STOP)
1008 echo ${UNAME_MACHINE}-unknown-stop
1009 exit ;;
1010 i*86:atheos:*:*)
1011 echo ${UNAME_MACHINE}-unknown-atheos
1012 exit ;;
1013 i*86:syllable:*:*)
1014 echo ${UNAME_MACHINE}-pc-syllable
1015 exit ;;
1016 i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*)
1017 echo i386-unknown-lynxos${UNAME_RELEASE}
1018 exit ;;
1019 i*86:*DOS:*:*)
1020 echo ${UNAME_MACHINE}-pc-msdosdjgpp
1021 exit ;;
1022 i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*)
1023 UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'`
1024 if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
1025 echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL}
1026 else
1027 echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL}
1028 fi
1029 exit ;;
1030 i*86:*:5:[678]*)
1031 # UnixWare 7.x, OpenUNIX and OpenServer 6.
1032 case `/bin/uname -X | grep "^Machine"` in
1033 *486*) UNAME_MACHINE=i486 ;;
1034 *Pentium) UNAME_MACHINE=i586 ;;
1035 *Pent*|*Celeron) UNAME_MACHINE=i686 ;;
1036 esac
1037 echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION}
1038 exit ;;
1039 i*86:*:3.2:*)
1040 if test -f /usr/options/cb.name; then
1041 UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name`
1042 echo ${UNAME_MACHINE}-pc-isc$UNAME_REL
1043 elif /bin/uname -X 2>/dev/null >/dev/null ; then
1044 UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')`
1045 (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486
1046 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \
1047 && UNAME_MACHINE=i586
1048 (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \
1049 && UNAME_MACHINE=i686
1050 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \
1051 && UNAME_MACHINE=i686
1052 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL
1053 else
1054 echo ${UNAME_MACHINE}-pc-sysv32
1055 fi
1056 exit ;;
1057 pc:*:*:*)
1058 # Left here for compatibility:
1059 # uname -m prints for DJGPP always 'pc', but it prints nothing about
1060 # the processor, so we play safe by assuming i586.
1061 # Note: whatever this is, it MUST be the same as what config.sub
1062 # prints for the "djgpp" host, or else GDB configury will decide that
1063 # this is a cross-build.
1064 echo i586-pc-msdosdjgpp
1065 exit ;;
1066 Intel:Mach:3*:*)
1067 echo i386-pc-mach3
1068 exit ;;
1069 paragon:*:*:*)
1070 echo i860-intel-osf1
1071 exit ;;
1072 i860:*:4.*:*) # i860-SVR4
1073 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then
1074 echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4
1075 else # Add other i860-SVR4 vendors below as they are discovered.
1076 echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4
1077 fi
1078 exit ;;
1079 mini*:CTIX:SYS*5:*)
1080 # "miniframe"
1081 echo m68010-convergent-sysv
1082 exit ;;
1083 mc68k:UNIX:SYSTEM5:3.51m)
1084 echo m68k-convergent-sysv
1085 exit ;;
1086 M680?0:D-NIX:5.3:*)
1087 echo m68k-diab-dnix
1088 exit ;;
1089 M68*:*:R3V[5678]*:*)
1090 test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;;
1091 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0)
1092 OS_REL=''
1093 test -r /etc/.relid \
1094 && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
1095 /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
1096 && { echo i486-ncr-sysv4.3${OS_REL}; exit; }
1097 /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
1098 && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;
1099 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
1100 /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
1101 && { echo i486-ncr-sysv4; exit; } ;;
1102 NCR*:*:4.2:* | MPRAS*:*:4.2:*)
1103 OS_REL='.3'
1104 test -r /etc/.relid \
1105 && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
1106 /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
1107 && { echo i486-ncr-sysv4.3${OS_REL}; exit; }
1108 /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
1109 && { echo i586-ncr-sysv4.3${OS_REL}; exit; }
1110 /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \
1111 && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;
1112 m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*)
1113 echo m68k-unknown-lynxos${UNAME_RELEASE}
1114 exit ;;
1115 mc68030:UNIX_System_V:4.*:*)
1116 echo m68k-atari-sysv4
1117 exit ;;
1118 TSUNAMI:LynxOS:2.*:*)
1119 echo sparc-unknown-lynxos${UNAME_RELEASE}
1120 exit ;;
1121 rs6000:LynxOS:2.*:*)
1122 echo rs6000-unknown-lynxos${UNAME_RELEASE}
1123 exit ;;
1124 PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*)
1125 echo powerpc-unknown-lynxos${UNAME_RELEASE}
1126 exit ;;
1127 SM[BE]S:UNIX_SV:*:*)
1128 echo mips-dde-sysv${UNAME_RELEASE}
1129 exit ;;
1130 RM*:ReliantUNIX-*:*:*)
1131 echo mips-sni-sysv4
1132 exit ;;
1133 RM*:SINIX-*:*:*)
1134 echo mips-sni-sysv4
1135 exit ;;
1136 *:SINIX-*:*:*)
1137 if uname -p 2>/dev/null >/dev/null ; then
1138 UNAME_MACHINE=`(uname -p) 2>/dev/null`
1139 echo ${UNAME_MACHINE}-sni-sysv4
1140 else
1141 echo ns32k-sni-sysv
1142 fi
1143 exit ;;
1144 PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort
1145 # says <Richard.M.Bartel@ccMail.Census.GOV>
1146 echo i586-unisys-sysv4
1147 exit ;;
1148 *:UNIX_System_V:4*:FTX*)
1149 # From Gerald Hewes <hewes@openmarket.com>.
1150 # How about differentiating between stratus architectures? -djm
1151 echo hppa1.1-stratus-sysv4
1152 exit ;;
1153 *:*:*:FTX*)
1154 # From seanf@swdc.stratus.com.
1155 echo i860-stratus-sysv4
1156 exit ;;
1157 i*86:VOS:*:*)
1158 # From Paul.Green@stratus.com.
1159 echo ${UNAME_MACHINE}-stratus-vos
1160 exit ;;
1161 *:VOS:*:*)
1162 # From Paul.Green@stratus.com.
1163 echo hppa1.1-stratus-vos
1164 exit ;;
1165 mc68*:A/UX:*:*)
1166 echo m68k-apple-aux${UNAME_RELEASE}
1167 exit ;;
1168 news*:NEWS-OS:6*:*)
1169 echo mips-sony-newsos6
1170 exit ;;
1171 R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*)
1172 if [ -d /usr/nec ]; then
1173 echo mips-nec-sysv${UNAME_RELEASE}
1174 else
1175 echo mips-unknown-sysv${UNAME_RELEASE}
1176 fi
1177 exit ;;
1178 BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only.
1179 echo powerpc-be-beos
1180 exit ;;
1181 BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only.
1182 echo powerpc-apple-beos
1183 exit ;;
1184 BePC:BeOS:*:*) # BeOS running on Intel PC compatible.
1185 echo i586-pc-beos
1186 exit ;;
1187 BePC:Haiku:*:*) # Haiku running on Intel PC compatible.
1188 echo i586-pc-haiku
1189 exit ;;
1190 SX-4:SUPER-UX:*:*)
1191 echo sx4-nec-superux${UNAME_RELEASE}
1192 exit ;;
1193 SX-5:SUPER-UX:*:*)
1194 echo sx5-nec-superux${UNAME_RELEASE}
1195 exit ;;
1196 SX-6:SUPER-UX:*:*)
1197 echo sx6-nec-superux${UNAME_RELEASE}
1198 exit ;;
1199 SX-7:SUPER-UX:*:*)
1200 echo sx7-nec-superux${UNAME_RELEASE}
1201 exit ;;
1202 SX-8:SUPER-UX:*:*)
1203 echo sx8-nec-superux${UNAME_RELEASE}
1204 exit ;;
1205 SX-8R:SUPER-UX:*:*)
1206 echo sx8r-nec-superux${UNAME_RELEASE}
1207 exit ;;
1208 Power*:Rhapsody:*:*)
1209 echo powerpc-apple-rhapsody${UNAME_RELEASE}
1210 exit ;;
1211 *:Rhapsody:*:*)
1212 echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE}
1213 exit ;;
1214 *:Darwin:*:*)
1215 UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown
1216 case $UNAME_PROCESSOR in
1217 i386)
1218 eval $set_cc_for_build
1219 if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then
1220 if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \
1221 (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \
1222 grep IS_64BIT_ARCH >/dev/null
1223 then
1224 UNAME_PROCESSOR="x86_64"
1225 fi
1226 fi ;;
1227 unknown) UNAME_PROCESSOR=powerpc ;;
1228 esac
1229 echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}
1230 exit ;;
1231 *:procnto*:*:* | *:QNX:[0123456789]*:*)
1232 UNAME_PROCESSOR=`uname -p`
1233 if test "$UNAME_PROCESSOR" = "x86"; then
1234 UNAME_PROCESSOR=i386
1235 UNAME_MACHINE=pc
1236 fi
1237 echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE}
1238 exit ;;
1239 *:QNX:*:4*)
1240 echo i386-pc-qnx
1241 exit ;;
1242 NEO-?:NONSTOP_KERNEL:*:*)
1243 echo neo-tandem-nsk${UNAME_RELEASE}
1244 exit ;;
1245 NSE-?:NONSTOP_KERNEL:*:*)
1246 echo nse-tandem-nsk${UNAME_RELEASE}
1247 exit ;;
1248 NSR-?:NONSTOP_KERNEL:*:*)
1249 echo nsr-tandem-nsk${UNAME_RELEASE}
1250 exit ;;
1251 *:NonStop-UX:*:*)
1252 echo mips-compaq-nonstopux
1253 exit ;;
1254 BS2000:POSIX*:*:*)
1255 echo bs2000-siemens-sysv
1256 exit ;;
1257 DS/*:UNIX_System_V:*:*)
1258 echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE}
1259 exit ;;
1260 *:Plan9:*:*)
1261 # "uname -m" is not consistent, so use $cputype instead. 386
1262 # is converted to i386 for consistency with other x86
1263 # operating systems.
1264 if test "$cputype" = "386"; then
1265 UNAME_MACHINE=i386
1266 else
1267 UNAME_MACHINE="$cputype"
1268 fi
1269 echo ${UNAME_MACHINE}-unknown-plan9
1270 exit ;;
1271 *:TOPS-10:*:*)
1272 echo pdp10-unknown-tops10
1273 exit ;;
1274 *:TENEX:*:*)
1275 echo pdp10-unknown-tenex
1276 exit ;;
1277 KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*)
1278 echo pdp10-dec-tops20
1279 exit ;;
1280 XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*)
1281 echo pdp10-xkl-tops20
1282 exit ;;
1283 *:TOPS-20:*:*)
1284 echo pdp10-unknown-tops20
1285 exit ;;
1286 *:ITS:*:*)
1287 echo pdp10-unknown-its
1288 exit ;;
1289 SEI:*:*:SEIUX)
1290 echo mips-sei-seiux${UNAME_RELEASE}
1291 exit ;;
1292 *:DragonFly:*:*)
1293 echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
1294 exit ;;
1295 *:*VMS:*:*)
1296 UNAME_MACHINE=`(uname -p) 2>/dev/null`
1297 case "${UNAME_MACHINE}" in
1298 A*) echo alpha-dec-vms ; exit ;;
1299 I*) echo ia64-dec-vms ; exit ;;
1300 V*) echo vax-dec-vms ; exit ;;
1301 esac ;;
1302 *:XENIX:*:SysV)
1303 echo i386-pc-xenix
1304 exit ;;
1305 i*86:skyos:*:*)
1306 echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//'
1307 exit ;;
1308 i*86:rdos:*:*)
1309 echo ${UNAME_MACHINE}-pc-rdos
1310 exit ;;
1311 i*86:AROS:*:*)
1312 echo ${UNAME_MACHINE}-pc-aros
1313 exit ;;
1314 esac
1315
1316 #echo '(No uname command or uname output not recognized.)' 1>&2
1317 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2
1318
1319 eval $set_cc_for_build
1320 cat >$dummy.c <<EOF
1321 #ifdef _SEQUENT_
1322 # include <sys/types.h>
1323 # include <sys/utsname.h>
1324 #endif
1325 main ()
1326 {
1327 #if defined (sony)
1328 #if defined (MIPSEB)
1329 /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed,
1330 I don't know.... */
1331 printf ("mips-sony-bsd\n"); exit (0);
1332 #else
1333 #include <sys/param.h>
1334 printf ("m68k-sony-newsos%s\n",
1335 #ifdef NEWSOS4
1336 "4"
1337 #else
1338 ""
1339 #endif
1340 ); exit (0);
1341 #endif
1342 #endif
1343
1344 #if defined (__arm) && defined (__acorn) && defined (__unix)
1345 printf ("arm-acorn-riscix\n"); exit (0);
1346 #endif
1347
1348 #if defined (hp300) && !defined (hpux)
1349 printf ("m68k-hp-bsd\n"); exit (0);
1350 #endif
1351
1352 #if defined (NeXT)
1353 #if !defined (__ARCHITECTURE__)
1354 #define __ARCHITECTURE__ "m68k"
1355 #endif
1356 int version;
1357 version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`;
1358 if (version < 4)
1359 printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version);
1360 else
1361 printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version);
1362 exit (0);
1363 #endif
1364
1365 #if defined (MULTIMAX) || defined (n16)
1366 #if defined (UMAXV)
1367 printf ("ns32k-encore-sysv\n"); exit (0);
1368 #else
1369 #if defined (CMU)
1370 printf ("ns32k-encore-mach\n"); exit (0);
1371 #else
1372 printf ("ns32k-encore-bsd\n"); exit (0);
1373 #endif
1374 #endif
1375 #endif
1376
1377 #if defined (__386BSD__)
1378 printf ("i386-pc-bsd\n"); exit (0);
1379 #endif
1380
1381 #if defined (sequent)
1382 #if defined (i386)
1383 printf ("i386-sequent-dynix\n"); exit (0);
1384 #endif
1385 #if defined (ns32000)
1386 printf ("ns32k-sequent-dynix\n"); exit (0);
1387 #endif
1388 #endif
1389
1390 #if defined (_SEQUENT_)
1391 struct utsname un;
1392
1393 uname(&un);
1394
1395 if (strncmp(un.version, "V2", 2) == 0) {
1396 printf ("i386-sequent-ptx2\n"); exit (0);
1397 }
1398 if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */
1399 printf ("i386-sequent-ptx1\n"); exit (0);
1400 }
1401 printf ("i386-sequent-ptx\n"); exit (0);
1402
1403 #endif
1404
1405 #if defined (vax)
1406 # if !defined (ultrix)
1407 # include <sys/param.h>
1408 # if defined (BSD)
1409 # if BSD == 43
1410 printf ("vax-dec-bsd4.3\n"); exit (0);
1411 # else
1412 # if BSD == 199006
1413 printf ("vax-dec-bsd4.3reno\n"); exit (0);
1414 # else
1415 printf ("vax-dec-bsd\n"); exit (0);
1416 # endif
1417 # endif
1418 # else
1419 printf ("vax-dec-bsd\n"); exit (0);
1420 # endif
1421 # else
1422 printf ("vax-dec-ultrix\n"); exit (0);
1423 # endif
1424 #endif
1425
1426 #if defined (alliant) && defined (i860)
1427 printf ("i860-alliant-bsd\n"); exit (0);
1428 #endif
1429
1430 exit (1);
1431 }
1432 EOF
1433
1434 $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` &&
1435 { echo "$SYSTEM_NAME"; exit; }
1436
1437 # Apollos put the system type in the environment.
1438
1439 test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; }
1440
1441 # Convex versions that predate uname can use getsysinfo(1)
1442
1443 if [ -x /usr/convex/getsysinfo ]
1444 then
1445 case `getsysinfo -f cpu_type` in
1446 c1*)
1447 echo c1-convex-bsd
1448 exit ;;
1449 c2*)
1450 if getsysinfo -f scalar_acc
1451 then echo c32-convex-bsd
1452 else echo c2-convex-bsd
1453 fi
1454 exit ;;
1455 c34*)
1456 echo c34-convex-bsd
1457 exit ;;
1458 c38*)
1459 echo c38-convex-bsd
1460 exit ;;
1461 c4*)
1462 echo c4-convex-bsd
1463 exit ;;
1464 esac
1465 fi
1466
1467 cat >&2 <<EOF
1468 $0: unable to guess system type
1469
1470 This script, last modified $timestamp, has failed to recognize
1471 the operating system you are using. It is advised that you
1472 download the most up to date version of the config scripts from
1473
1474 http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
1475 and
1476 http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD
1477
1478 If the version you run ($0) is already up to date, please
1479 send the following data and any information you think might be
1480 pertinent to <config-patches@gnu.org> in order to provide the needed
1481 information to handle your system.
1482
1483 config.guess timestamp = $timestamp
1484
1485 uname -m = `(uname -m) 2>/dev/null || echo unknown`
1486 uname -r = `(uname -r) 2>/dev/null || echo unknown`
1487 uname -s = `(uname -s) 2>/dev/null || echo unknown`
1488 uname -v = `(uname -v) 2>/dev/null || echo unknown`
1489
1490 /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null`
1491 /bin/uname -X = `(/bin/uname -X) 2>/dev/null`
1492
1493 hostinfo = `(hostinfo) 2>/dev/null`
1494 /bin/universe = `(/bin/universe) 2>/dev/null`
1495 /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null`
1496 /bin/arch = `(/bin/arch) 2>/dev/null`
1497 /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null`
1498 /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null`
1499
1500 UNAME_MACHINE = ${UNAME_MACHINE}
1501 UNAME_RELEASE = ${UNAME_RELEASE}
1502 UNAME_SYSTEM = ${UNAME_SYSTEM}
1503 UNAME_VERSION = ${UNAME_VERSION}
1504 EOF
1505
1506 exit 1
1507
1508 # Local variables:
1509 # eval: (add-hook 'write-file-hooks 'time-stamp)
1510 # time-stamp-start: "timestamp='"
1511 # time-stamp-format: "%:y-%02m-%02d"
1512 # time-stamp-end: "'"
1513 # End: