annotate config.guess @ 23:e1e451cf85bb

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