blob: c4bd827a7bedcf6f78866a27bf01d896c047b516 [file] [log] [blame]
Damien Millerb405d612000-06-12 23:01:02 +10001#! /bin/sh
2# Attempt to guess a canonical system name.
Damien Miller23902e32016-08-02 10:48:04 +10003# Copyright 1992-2016 Free Software Foundation, Inc.
Damien Millerb405d612000-06-12 23:01:02 +10004
Damien Miller23902e32016-08-02 10:48:04 +10005timestamp='2016-05-15'
Damien Millerb405d612000-06-12 23:01:02 +10006
7# This file is free software; you can redistribute it and/or modify it
8# under the terms of the GNU General Public License as published by
Damien Miller23902e32016-08-02 10:48:04 +10009# the Free Software Foundation; either version 3 of the License, or
Damien Millerb405d612000-06-12 23:01:02 +100010# (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful, but
13# WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15# General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
Damien Millerbc68f242013-04-18 11:26:25 +100018# along with this program; if not, see <http://www.gnu.org/licenses/>.
Damien Millerb405d612000-06-12 23:01:02 +100019#
20# As a special exception to the GNU General Public License, if you
21# distribute this file as part of a program that contains a
22# configuration script generated by Autoconf, you may include it under
Damien Miller23902e32016-08-02 10:48:04 +100023# the same distribution terms that you use for the rest of that
24# program. This Exception is an additional permission under section 7
25# of the GNU General Public License, version 3 ("GPLv3").
Damien Millerb405d612000-06-12 23:01:02 +100026#
Damien Miller23902e32016-08-02 10:48:04 +100027# Originally written by Per Bothner; maintained since 2000 by Ben Elliston.
Damien Millerb405d612000-06-12 23:01:02 +100028#
Tim Ricec5b0cb32010-03-01 15:57:42 -080029# You can get the latest version of this script from:
Damien Miller23902e32016-08-02 10:48:04 +100030# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
31#
32# Please send patches to <config-patches@gnu.org>.
33
Damien Millerb405d612000-06-12 23:01:02 +100034
35me=`echo "$0" | sed -e 's,.*/,,'`
36
37usage="\
38Usage: $0 [OPTION]
39
Damien Miller5bf5f2c2001-05-06 10:54:15 +100040Output the configuration name of the system \`$me' is run on.
Damien Millerb405d612000-06-12 23:01:02 +100041
42Operation modes:
Damien Miller5bf5f2c2001-05-06 10:54:15 +100043 -h, --help print this help, then exit
44 -t, --time-stamp print date of last modification, then exit
45 -v, --version print version number, then exit
46
47Report bugs and patches to <config-patches@gnu.org>."
48
49version="\
50GNU config.guess ($timestamp)
51
52Originally written by Per Bothner.
Damien Miller23902e32016-08-02 10:48:04 +100053Copyright 1992-2016 Free Software Foundation, Inc.
Damien Miller5bf5f2c2001-05-06 10:54:15 +100054
55This is free software; see the source for copying conditions. There is NO
56warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
Damien Millerb405d612000-06-12 23:01:02 +100057
58help="
59Try \`$me --help' for more information."
60
61# Parse command line
62while test $# -gt 0 ; do
Damien Miller5bf5f2c2001-05-06 10:54:15 +100063 case $1 in
64 --time-stamp | --time* | -t )
Tim Rice5f707582005-06-01 19:57:45 -070065 echo "$timestamp" ; exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +100066 --version | -v )
Tim Rice5f707582005-06-01 19:57:45 -070067 echo "$version" ; exit ;;
Damien Millerb405d612000-06-12 23:01:02 +100068 --help | --h* | -h )
Tim Rice5f707582005-06-01 19:57:45 -070069 echo "$usage"; exit ;;
Damien Millerb405d612000-06-12 23:01:02 +100070 -- ) # Stop option processing
71 shift; break ;;
72 - ) # Use stdin as input.
73 break ;;
74 -* )
Damien Miller5bf5f2c2001-05-06 10:54:15 +100075 echo "$me: invalid option $1$help" >&2
Damien Millerb405d612000-06-12 23:01:02 +100076 exit 1 ;;
77 * )
78 break ;;
79 esac
80done
81
82if test $# != 0; then
83 echo "$me: too many arguments$help" >&2
84 exit 1
85fi
86
Damien Millera7609f52002-07-25 14:40:22 +100087trap 'exit 1' 1 2 15
Damien Millerb405d612000-06-12 23:01:02 +100088
Damien Millera7609f52002-07-25 14:40:22 +100089# CC_FOR_BUILD -- compiler used by this script. Note that the use of a
90# compiler to aid in system detection is discouraged as it requires
91# temporary files to be created and, as you can see below, it is a
92# headache to deal with in a portable fashion.
Damien Miller5bf5f2c2001-05-06 10:54:15 +100093
Damien Miller5bf5f2c2001-05-06 10:54:15 +100094# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still
95# use `HOST_CC' if defined, but it is deprecated.
96
Damien Miller752e4e62004-04-21 12:29:13 +100097# Portable tmp directory creation inspired by the Autoconf team.
Damien Millera7609f52002-07-25 14:40:22 +100098
Damien Miller752e4e62004-04-21 12:29:13 +100099set_cc_for_build='
100trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ;
101trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ;
102: ${TMPDIR=/tmp} ;
Darren Tuckerc570ff72008-09-06 18:20:57 +1000103 { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
Damien Miller752e4e62004-04-21 12:29:13 +1000104 { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||
105 { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } ||
106 { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ;
107dummy=$tmp/dummy ;
108tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ;
Damien Millera7609f52002-07-25 14:40:22 +1000109case $CC_FOR_BUILD,$HOST_CC,$CC in
110 ,,) echo "int x;" > $dummy.c ;
111 for c in cc gcc c89 c99 ; do
Damien Miller752e4e62004-04-21 12:29:13 +1000112 if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then
Tim Rice92c1fc42002-02-18 15:18:56 -0800113 CC_FOR_BUILD="$c"; break ;
114 fi ;
115 done ;
Damien Miller5bf5f2c2001-05-06 10:54:15 +1000116 if test x"$CC_FOR_BUILD" = x ; then
Tim Rice92c1fc42002-02-18 15:18:56 -0800117 CC_FOR_BUILD=no_compiler_found ;
Damien Miller5bf5f2c2001-05-06 10:54:15 +1000118 fi
119 ;;
120 ,,*) CC_FOR_BUILD=$CC ;;
121 ,*,*) CC_FOR_BUILD=$HOST_CC ;;
Darren Tuckerc570ff72008-09-06 18:20:57 +1000122esac ; set_cc_for_build= ;'
Damien Millerb405d612000-06-12 23:01:02 +1000123
124# This is needed to find uname on a Pyramid OSx when run in the BSD universe.
Tim Rice92c1fc42002-02-18 15:18:56 -0800125# (ghazi@noc.rutgers.edu 1994-08-24)
Damien Millerb405d612000-06-12 23:01:02 +1000126if (test -f /.attbin/uname) >/dev/null 2>&1 ; then
127 PATH=$PATH:/.attbin ; export PATH
128fi
129
130UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown
131UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown
Damien Miller5bf5f2c2001-05-06 10:54:15 +1000132UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown
Damien Millerb405d612000-06-12 23:01:02 +1000133UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
134
Damien Miller23902e32016-08-02 10:48:04 +1000135case "${UNAME_SYSTEM}" in
136Linux|GNU|GNU/*)
137 # If the system lacks a compiler, then just pick glibc.
138 # We could probably try harder.
139 LIBC=gnu
140
141 eval $set_cc_for_build
142 cat <<-EOF > $dummy.c
143 #include <features.h>
144 #if defined(__UCLIBC__)
145 LIBC=uclibc
146 #elif defined(__dietlibc__)
147 LIBC=dietlibc
148 #else
149 LIBC=gnu
150 #endif
151 EOF
152 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`
153 ;;
154esac
155
Damien Millerb405d612000-06-12 23:01:02 +1000156# Note: order is significant - the case branches are not exclusive.
157
158case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
159 *:NetBSD:*:*)
Tim Rice92c1fc42002-02-18 15:18:56 -0800160 # NetBSD (nbsd) targets should (where applicable) match one or
Damien Millerbc68f242013-04-18 11:26:25 +1000161 # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*,
Damien Millerb405d612000-06-12 23:01:02 +1000162 # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently
163 # switched to ELF, *-*-netbsd* would select the old
164 # object file format. This provides both forward
165 # compatibility and a consistent mechanism for selecting the
166 # object file format.
Tim Rice92c1fc42002-02-18 15:18:56 -0800167 #
168 # Note: NetBSD doesn't particularly care about the vendor
169 # portion of the name. We always set it to "unknown".
Damien Millera7609f52002-07-25 14:40:22 +1000170 sysctl="sysctl -n hw.machine_arch"
Damien Miller23902e32016-08-02 10:48:04 +1000171 UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \
172 /sbin/$sysctl 2>/dev/null || \
173 /usr/sbin/$sysctl 2>/dev/null || \
174 echo unknown)`
Tim Rice92c1fc42002-02-18 15:18:56 -0800175 case "${UNAME_MACHINE_ARCH}" in
Damien Millera7609f52002-07-25 14:40:22 +1000176 armeb) machine=armeb-unknown ;;
Tim Rice92c1fc42002-02-18 15:18:56 -0800177 arm*) machine=arm-unknown ;;
178 sh3el) machine=shl-unknown ;;
179 sh3eb) machine=sh-unknown ;;
Darren Tuckerc570ff72008-09-06 18:20:57 +1000180 sh5el) machine=sh5le-unknown ;;
Damien Miller23902e32016-08-02 10:48:04 +1000181 earmv*)
182 arch=`echo ${UNAME_MACHINE_ARCH} | sed -e 's,^e\(armv[0-9]\).*$,\1,'`
183 endian=`echo ${UNAME_MACHINE_ARCH} | sed -ne 's,^.*\(eb\)$,\1,p'`
184 machine=${arch}${endian}-unknown
185 ;;
Tim Rice92c1fc42002-02-18 15:18:56 -0800186 *) machine=${UNAME_MACHINE_ARCH}-unknown ;;
Damien Millerb405d612000-06-12 23:01:02 +1000187 esac
Damien Miller5bf5f2c2001-05-06 10:54:15 +1000188 # The Operating System including object format, if it has switched
Damien Miller23902e32016-08-02 10:48:04 +1000189 # to ELF recently (or will in the future) and ABI.
Tim Rice92c1fc42002-02-18 15:18:56 -0800190 case "${UNAME_MACHINE_ARCH}" in
Damien Miller23902e32016-08-02 10:48:04 +1000191 earm*)
192 os=netbsdelf
193 ;;
Tim Rice92c1fc42002-02-18 15:18:56 -0800194 arm*|i386|m68k|ns32k|sh3*|sparc|vax)
195 eval $set_cc_for_build
Damien Miller5bf5f2c2001-05-06 10:54:15 +1000196 if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \
Tim Ricec5b0cb32010-03-01 15:57:42 -0800197 | grep -q __ELF__
Damien Miller5bf5f2c2001-05-06 10:54:15 +1000198 then
199 # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout).
200 # Return netbsd for either. FIX?
201 os=netbsd
202 else
203 os=netbsdelf
204 fi
205 ;;
206 *)
Damien Millerbc68f242013-04-18 11:26:25 +1000207 os=netbsd
Damien Miller5bf5f2c2001-05-06 10:54:15 +1000208 ;;
209 esac
Damien Miller23902e32016-08-02 10:48:04 +1000210 # Determine ABI tags.
211 case "${UNAME_MACHINE_ARCH}" in
212 earm*)
213 expr='s/^earmv[0-9]/-eabi/;s/eb$//'
214 abi=`echo ${UNAME_MACHINE_ARCH} | sed -e "$expr"`
215 ;;
216 esac
Damien Millerb405d612000-06-12 23:01:02 +1000217 # The OS release
Damien Miller752e4e62004-04-21 12:29:13 +1000218 # Debian GNU/NetBSD machines have a different userland, and
219 # thus, need a distinct triplet. However, they do not need
220 # kernel version information, so it can be replaced with a
221 # suitable tag, in the style of linux-gnu.
222 case "${UNAME_VERSION}" in
223 Debian*)
224 release='-gnu'
225 ;;
226 *)
Damien Miller23902e32016-08-02 10:48:04 +1000227 release=`echo ${UNAME_RELEASE} | sed -e 's/[-_].*//' | cut -d. -f1,2`
Damien Miller752e4e62004-04-21 12:29:13 +1000228 ;;
229 esac
Damien Millerb405d612000-06-12 23:01:02 +1000230 # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM:
231 # contains redundant information, the shorter form:
232 # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used.
Damien Miller23902e32016-08-02 10:48:04 +1000233 echo "${machine}-${os}${release}${abi}"
Tim Rice5f707582005-06-01 19:57:45 -0700234 exit ;;
Damien Millerbc68f242013-04-18 11:26:25 +1000235 *:Bitrig:*:*)
236 UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'`
237 echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE}
238 exit ;;
Tim Rice92c1fc42002-02-18 15:18:56 -0800239 *:OpenBSD:*:*)
Darren Tuckerc570ff72008-09-06 18:20:57 +1000240 UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'`
241 echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -0700242 exit ;;
Damien Miller23902e32016-08-02 10:48:04 +1000243 *:LibertyBSD:*:*)
244 UNAME_MACHINE_ARCH=`arch | sed 's/^.*BSD\.//'`
245 echo ${UNAME_MACHINE_ARCH}-unknown-libertybsd${UNAME_RELEASE}
246 exit ;;
Tim Rice5f707582005-06-01 19:57:45 -0700247 *:ekkoBSD:*:*)
248 echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE}
249 exit ;;
Darren Tuckerc570ff72008-09-06 18:20:57 +1000250 *:SolidBSD:*:*)
251 echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE}
252 exit ;;
Tim Rice5f707582005-06-01 19:57:45 -0700253 macppc:MirBSD:*:*)
Darren Tuckerc570ff72008-09-06 18:20:57 +1000254 echo powerpc-unknown-mirbsd${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -0700255 exit ;;
256 *:MirBSD:*:*)
257 echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE}
258 exit ;;
Damien Miller23902e32016-08-02 10:48:04 +1000259 *:Sortix:*:*)
260 echo ${UNAME_MACHINE}-unknown-sortix
261 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000262 alpha:OSF1:*:*)
Tim Rice5f707582005-06-01 19:57:45 -0700263 case $UNAME_RELEASE in
264 *4.0)
Damien Millerb405d612000-06-12 23:01:02 +1000265 UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
Tim Rice5f707582005-06-01 19:57:45 -0700266 ;;
267 *5.*)
Damien Millerbc68f242013-04-18 11:26:25 +1000268 UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'`
Tim Rice5f707582005-06-01 19:57:45 -0700269 ;;
270 esac
Damien Miller752e4e62004-04-21 12:29:13 +1000271 # According to Compaq, /usr/sbin/psrinfo has been available on
272 # OSF/1 and Tru64 systems produced since 1995. I hope that
273 # covers most systems running today. This code pipes the CPU
274 # types through head -n 1, so we only detect the type of CPU 0.
275 ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1`
276 case "$ALPHA_CPU_TYPE" in
277 "EV4 (21064)")
Damien Miller23902e32016-08-02 10:48:04 +1000278 UNAME_MACHINE=alpha ;;
Damien Miller752e4e62004-04-21 12:29:13 +1000279 "EV4.5 (21064)")
Damien Miller23902e32016-08-02 10:48:04 +1000280 UNAME_MACHINE=alpha ;;
Damien Miller752e4e62004-04-21 12:29:13 +1000281 "LCA4 (21066/21068)")
Damien Miller23902e32016-08-02 10:48:04 +1000282 UNAME_MACHINE=alpha ;;
Damien Miller752e4e62004-04-21 12:29:13 +1000283 "EV5 (21164)")
Damien Miller23902e32016-08-02 10:48:04 +1000284 UNAME_MACHINE=alphaev5 ;;
Damien Miller752e4e62004-04-21 12:29:13 +1000285 "EV5.6 (21164A)")
Damien Miller23902e32016-08-02 10:48:04 +1000286 UNAME_MACHINE=alphaev56 ;;
Damien Miller752e4e62004-04-21 12:29:13 +1000287 "EV5.6 (21164PC)")
Damien Miller23902e32016-08-02 10:48:04 +1000288 UNAME_MACHINE=alphapca56 ;;
Damien Miller752e4e62004-04-21 12:29:13 +1000289 "EV5.7 (21164PC)")
Damien Miller23902e32016-08-02 10:48:04 +1000290 UNAME_MACHINE=alphapca57 ;;
Damien Miller752e4e62004-04-21 12:29:13 +1000291 "EV6 (21264)")
Damien Miller23902e32016-08-02 10:48:04 +1000292 UNAME_MACHINE=alphaev6 ;;
Damien Miller752e4e62004-04-21 12:29:13 +1000293 "EV6.7 (21264A)")
Damien Miller23902e32016-08-02 10:48:04 +1000294 UNAME_MACHINE=alphaev67 ;;
Damien Miller752e4e62004-04-21 12:29:13 +1000295 "EV6.8CB (21264C)")
Damien Miller23902e32016-08-02 10:48:04 +1000296 UNAME_MACHINE=alphaev68 ;;
Damien Miller752e4e62004-04-21 12:29:13 +1000297 "EV6.8AL (21264B)")
Damien Miller23902e32016-08-02 10:48:04 +1000298 UNAME_MACHINE=alphaev68 ;;
Damien Miller752e4e62004-04-21 12:29:13 +1000299 "EV6.8CX (21264D)")
Damien Miller23902e32016-08-02 10:48:04 +1000300 UNAME_MACHINE=alphaev68 ;;
Damien Miller752e4e62004-04-21 12:29:13 +1000301 "EV6.9A (21264/EV69A)")
Damien Miller23902e32016-08-02 10:48:04 +1000302 UNAME_MACHINE=alphaev69 ;;
Damien Miller752e4e62004-04-21 12:29:13 +1000303 "EV7 (21364)")
Damien Miller23902e32016-08-02 10:48:04 +1000304 UNAME_MACHINE=alphaev7 ;;
Damien Miller752e4e62004-04-21 12:29:13 +1000305 "EV7.9 (21364A)")
Damien Miller23902e32016-08-02 10:48:04 +1000306 UNAME_MACHINE=alphaev79 ;;
Damien Miller752e4e62004-04-21 12:29:13 +1000307 esac
Tim Rice5f707582005-06-01 19:57:45 -0700308 # A Pn.n version is a patched version.
Damien Millerb405d612000-06-12 23:01:02 +1000309 # A Vn.n version is a released version.
310 # A Tn.n version is a released field test version.
311 # A Xn.n version is an unreleased experimental baselevel.
312 # 1.2 uses "1.2" for uname -r.
Damien Miller23902e32016-08-02 10:48:04 +1000313 echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`
Tim Riced069c482011-01-26 12:32:12 -0800314 # Reset EXIT trap before exiting to avoid spurious non-zero exit code.
315 exitcode=$?
316 trap '' 0
317 exit $exitcode ;;
Damien Millerb405d612000-06-12 23:01:02 +1000318 Alpha\ *:Windows_NT*:*)
319 # How do we know it's Interix rather than the generic POSIX subsystem?
320 # Should we change UNAME_MACHINE based on the output of uname instead
321 # of the specific Alpha model?
322 echo alpha-pc-interix
Tim Rice5f707582005-06-01 19:57:45 -0700323 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000324 21064:Windows_NT:50:3)
325 echo alpha-dec-winnt3.5
Tim Rice5f707582005-06-01 19:57:45 -0700326 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000327 Amiga*:UNIX_System_V:4.0:*)
Damien Miller5bf5f2c2001-05-06 10:54:15 +1000328 echo m68k-unknown-sysv4
Tim Rice5f707582005-06-01 19:57:45 -0700329 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000330 *:[Aa]miga[Oo][Ss]:*:*)
331 echo ${UNAME_MACHINE}-unknown-amigaos
Tim Rice5f707582005-06-01 19:57:45 -0700332 exit ;;
Tim Rice92c1fc42002-02-18 15:18:56 -0800333 *:[Mm]orph[Oo][Ss]:*:*)
334 echo ${UNAME_MACHINE}-unknown-morphos
Tim Rice5f707582005-06-01 19:57:45 -0700335 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000336 *:OS/390:*:*)
337 echo i370-ibm-openedition
Tim Rice5f707582005-06-01 19:57:45 -0700338 exit ;;
339 *:z/VM:*:*)
340 echo s390-ibm-zvmoe
341 exit ;;
342 *:OS400:*:*)
Damien Millerbc68f242013-04-18 11:26:25 +1000343 echo powerpc-ibm-os400
Tim Rice5f707582005-06-01 19:57:45 -0700344 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000345 arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*)
346 echo arm-acorn-riscix${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -0700347 exit ;;
Damien Millerbc68f242013-04-18 11:26:25 +1000348 arm*:riscos:*:*|arm*:RISCOS:*:*)
Tim Rice5f707582005-06-01 19:57:45 -0700349 echo arm-unknown-riscos
350 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +1000351 SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*)
Damien Millerb405d612000-06-12 23:01:02 +1000352 echo hppa1.1-hitachi-hiuxmpp
Tim Rice5f707582005-06-01 19:57:45 -0700353 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000354 Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*)
355 # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE.
356 if test "`(/bin/universe) 2>/dev/null`" = att ; then
357 echo pyramid-pyramid-sysv3
358 else
359 echo pyramid-pyramid-bsd
360 fi
Tim Rice5f707582005-06-01 19:57:45 -0700361 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000362 NILE*:*:*:dcosx)
363 echo pyramid-pyramid-svr4
Tim Rice5f707582005-06-01 19:57:45 -0700364 exit ;;
Damien Miller752e4e62004-04-21 12:29:13 +1000365 DRS?6000:unix:4.0:6*)
366 echo sparc-icl-nx6
Tim Rice5f707582005-06-01 19:57:45 -0700367 exit ;;
368 DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*)
Damien Millera7609f52002-07-25 14:40:22 +1000369 case `/usr/bin/uname -p` in
Tim Rice5f707582005-06-01 19:57:45 -0700370 sparc) echo sparc-icl-nx7; exit ;;
Damien Millera7609f52002-07-25 14:40:22 +1000371 esac ;;
Tim Ricec5b0cb32010-03-01 15:57:42 -0800372 s390x:SunOS:*:*)
373 echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
374 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000375 sun4H:SunOS:5.*:*)
376 echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
Tim Rice5f707582005-06-01 19:57:45 -0700377 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000378 sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
379 echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
Tim Rice5f707582005-06-01 19:57:45 -0700380 exit ;;
Tim Ricec5b0cb32010-03-01 15:57:42 -0800381 i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*)
382 echo i386-pc-auroraux${UNAME_RELEASE}
383 exit ;;
Darren Tuckerc570ff72008-09-06 18:20:57 +1000384 i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)
Tim Ricec5b0cb32010-03-01 15:57:42 -0800385 eval $set_cc_for_build
Damien Miller23902e32016-08-02 10:48:04 +1000386 SUN_ARCH=i386
Tim Ricec5b0cb32010-03-01 15:57:42 -0800387 # If there is a compiler, see if it is configured for 64-bit objects.
388 # Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
389 # This test works for both compilers.
Damien Miller23902e32016-08-02 10:48:04 +1000390 if [ "$CC_FOR_BUILD" != no_compiler_found ]; then
Tim Ricec5b0cb32010-03-01 15:57:42 -0800391 if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
Damien Miller23902e32016-08-02 10:48:04 +1000392 (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
Tim Ricec5b0cb32010-03-01 15:57:42 -0800393 grep IS_64BIT_ARCH >/dev/null
394 then
Damien Miller23902e32016-08-02 10:48:04 +1000395 SUN_ARCH=x86_64
Tim Ricec5b0cb32010-03-01 15:57:42 -0800396 fi
397 fi
398 echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
Tim Rice5f707582005-06-01 19:57:45 -0700399 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000400 sun4*:SunOS:6*:*)
401 # According to config.sub, this is the proper way to canonicalize
402 # SunOS6. Hard to guess exactly what SunOS6 will be like, but
403 # it's likely to be more like Solaris than SunOS4.
404 echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
Tim Rice5f707582005-06-01 19:57:45 -0700405 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000406 sun4*:SunOS:*:*)
407 case "`/usr/bin/arch -k`" in
408 Series*|S4*)
409 UNAME_RELEASE=`uname -v`
410 ;;
411 esac
412 # Japanese Language versions have a version number like `4.1.3-JL'.
413 echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'`
Tim Rice5f707582005-06-01 19:57:45 -0700414 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000415 sun3*:SunOS:*:*)
416 echo m68k-sun-sunos${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -0700417 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000418 sun*:*:4.2BSD:*)
Damien Millera7609f52002-07-25 14:40:22 +1000419 UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
Damien Miller23902e32016-08-02 10:48:04 +1000420 test "x${UNAME_RELEASE}" = x && UNAME_RELEASE=3
Damien Millerb405d612000-06-12 23:01:02 +1000421 case "`/bin/arch`" in
422 sun3)
423 echo m68k-sun-sunos${UNAME_RELEASE}
424 ;;
425 sun4)
426 echo sparc-sun-sunos${UNAME_RELEASE}
427 ;;
428 esac
Tim Rice5f707582005-06-01 19:57:45 -0700429 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000430 aushp:SunOS:*:*)
431 echo sparc-auspex-sunos${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -0700432 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000433 # The situation for MiNT is a little confusing. The machine name
434 # can be virtually everything (everything which is not
435 # "atarist" or "atariste" at least should have a processor
436 # > m68000). The system name ranges from "MiNT" over "FreeMiNT"
437 # to the lowercase version "mint" (or "freemint"). Finally
438 # the system name "TOS" denotes a system which is actually not
439 # MiNT. But MiNT is downward compatible to TOS, so this should
440 # be no problem.
441 atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
Damien Millerbc68f242013-04-18 11:26:25 +1000442 echo m68k-atari-mint${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -0700443 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000444 atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
445 echo m68k-atari-mint${UNAME_RELEASE}
Damien Millerbc68f242013-04-18 11:26:25 +1000446 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000447 *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
Damien Millerbc68f242013-04-18 11:26:25 +1000448 echo m68k-atari-mint${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -0700449 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000450 milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
Damien Millerbc68f242013-04-18 11:26:25 +1000451 echo m68k-milan-mint${UNAME_RELEASE}
452 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000453 hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
Damien Millerbc68f242013-04-18 11:26:25 +1000454 echo m68k-hades-mint${UNAME_RELEASE}
455 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000456 *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
Damien Millerbc68f242013-04-18 11:26:25 +1000457 echo m68k-unknown-mint${UNAME_RELEASE}
458 exit ;;
Tim Rice5f707582005-06-01 19:57:45 -0700459 m68k:machten:*:*)
460 echo m68k-apple-machten${UNAME_RELEASE}
461 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000462 powerpc:machten:*:*)
463 echo powerpc-apple-machten${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -0700464 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000465 RISC*:Mach:*:*)
466 echo mips-dec-mach_bsd4.3
Tim Rice5f707582005-06-01 19:57:45 -0700467 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000468 RISC*:ULTRIX:*:*)
469 echo mips-dec-ultrix${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -0700470 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000471 VAX*:ULTRIX*:*:*)
472 echo vax-dec-ultrix${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -0700473 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000474 2020:CLIX:*:* | 2430:CLIX:*:*)
475 echo clipper-intergraph-clix${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -0700476 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000477 mips:*:*:UMIPS | mips:*:*:RISCos)
Tim Rice92c1fc42002-02-18 15:18:56 -0800478 eval $set_cc_for_build
Damien Millerb405d612000-06-12 23:01:02 +1000479 sed 's/^ //' << EOF >$dummy.c
480#ifdef __cplusplus
481#include <stdio.h> /* for printf() prototype */
482 int main (int argc, char *argv[]) {
483#else
484 int main (argc, argv) int argc; char *argv[]; {
485#endif
486 #if defined (host_mips) && defined (MIPSEB)
487 #if defined (SYSTYPE_SYSV)
488 printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0);
489 #endif
490 #if defined (SYSTYPE_SVR4)
491 printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0);
492 #endif
493 #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD)
494 printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0);
495 #endif
496 #endif
497 exit (-1);
498 }
499EOF
Tim Rice5f707582005-06-01 19:57:45 -0700500 $CC_FOR_BUILD -o $dummy $dummy.c &&
501 dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` &&
502 SYSTEM_NAME=`$dummy $dummyarg` &&
503 { echo "$SYSTEM_NAME"; exit; }
Damien Millerb405d612000-06-12 23:01:02 +1000504 echo mips-mips-riscos${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -0700505 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +1000506 Motorola:PowerMAX_OS:*:*)
507 echo powerpc-motorola-powermax
Tim Rice5f707582005-06-01 19:57:45 -0700508 exit ;;
Damien Miller752e4e62004-04-21 12:29:13 +1000509 Motorola:*:4.3:PL8-*)
510 echo powerpc-harris-powermax
Tim Rice5f707582005-06-01 19:57:45 -0700511 exit ;;
Damien Miller752e4e62004-04-21 12:29:13 +1000512 Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*)
Damien Millera7609f52002-07-25 14:40:22 +1000513 echo powerpc-harris-powermax
Tim Rice5f707582005-06-01 19:57:45 -0700514 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000515 Night_Hawk:Power_UNIX:*:*)
516 echo powerpc-harris-powerunix
Tim Rice5f707582005-06-01 19:57:45 -0700517 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000518 m88k:CX/UX:7*:*)
519 echo m88k-harris-cxux7
Tim Rice5f707582005-06-01 19:57:45 -0700520 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000521 m88k:*:4*:R4*)
522 echo m88k-motorola-sysv4
Tim Rice5f707582005-06-01 19:57:45 -0700523 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000524 m88k:*:3*:R3*)
525 echo m88k-motorola-sysv3
Tim Rice5f707582005-06-01 19:57:45 -0700526 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000527 AViiON:dgux:*:*)
Damien Millerbc68f242013-04-18 11:26:25 +1000528 # DG/UX returns AViiON for all architectures
529 UNAME_PROCESSOR=`/usr/bin/uname -p`
Damien Millerb405d612000-06-12 23:01:02 +1000530 if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ]
531 then
532 if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \
533 [ ${TARGET_BINARY_INTERFACE}x = x ]
534 then
535 echo m88k-dg-dgux${UNAME_RELEASE}
536 else
537 echo m88k-dg-dguxbcs${UNAME_RELEASE}
538 fi
539 else
540 echo i586-dg-dgux${UNAME_RELEASE}
541 fi
Damien Millerbc68f242013-04-18 11:26:25 +1000542 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000543 M88*:DolphinOS:*:*) # DolphinOS (SVR3)
544 echo m88k-dolphin-sysv3
Tim Rice5f707582005-06-01 19:57:45 -0700545 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000546 M88*:*:R3*:*)
547 # Delta 88k system running SVR3
548 echo m88k-motorola-sysv3
Tim Rice5f707582005-06-01 19:57:45 -0700549 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000550 XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3)
551 echo m88k-tektronix-sysv3
Tim Rice5f707582005-06-01 19:57:45 -0700552 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000553 Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD)
554 echo m68k-tektronix-bsd
Tim Rice5f707582005-06-01 19:57:45 -0700555 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000556 *:IRIX*:*:*)
557 echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'`
Tim Rice5f707582005-06-01 19:57:45 -0700558 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000559 ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX.
Tim Rice5f707582005-06-01 19:57:45 -0700560 echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id
561 exit ;; # Note that: echo "'`uname -s`'" gives 'AIX '
Damien Miller5bf5f2c2001-05-06 10:54:15 +1000562 i*86:AIX:*:*)
Damien Millerb405d612000-06-12 23:01:02 +1000563 echo i386-ibm-aix
Tim Rice5f707582005-06-01 19:57:45 -0700564 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +1000565 ia64:AIX:*:*)
566 if [ -x /usr/bin/oslevel ] ; then
567 IBM_REV=`/usr/bin/oslevel`
568 else
569 IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}
570 fi
571 echo ${UNAME_MACHINE}-ibm-aix${IBM_REV}
Tim Rice5f707582005-06-01 19:57:45 -0700572 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000573 *:AIX:2:3)
574 if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then
Tim Rice92c1fc42002-02-18 15:18:56 -0800575 eval $set_cc_for_build
Damien Millerb405d612000-06-12 23:01:02 +1000576 sed 's/^ //' << EOF >$dummy.c
577 #include <sys/systemcfg.h>
578
579 main()
580 {
581 if (!__power_pc())
582 exit(1);
583 puts("powerpc-ibm-aix3.2.5");
584 exit(0);
585 }
586EOF
Tim Rice5f707582005-06-01 19:57:45 -0700587 if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy`
588 then
589 echo "$SYSTEM_NAME"
590 else
591 echo rs6000-ibm-aix3.2.5
592 fi
Damien Millerb405d612000-06-12 23:01:02 +1000593 elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then
594 echo rs6000-ibm-aix3.2.4
595 else
596 echo rs6000-ibm-aix3.2
597 fi
Tim Rice5f707582005-06-01 19:57:45 -0700598 exit ;;
Tim Riced069c482011-01-26 12:32:12 -0800599 *:AIX:*:[4567])
Damien Millera7609f52002-07-25 14:40:22 +1000600 IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`
Damien Miller5bf5f2c2001-05-06 10:54:15 +1000601 if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then
Damien Millerb405d612000-06-12 23:01:02 +1000602 IBM_ARCH=rs6000
603 else
604 IBM_ARCH=powerpc
605 fi
Damien Miller23902e32016-08-02 10:48:04 +1000606 if [ -x /usr/bin/lslpp ] ; then
607 IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc |
608 awk -F: '{ print $3 }' | sed s/[0-9]*$/0/`
Damien Millerb405d612000-06-12 23:01:02 +1000609 else
Damien Miller5bf5f2c2001-05-06 10:54:15 +1000610 IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}
Damien Millerb405d612000-06-12 23:01:02 +1000611 fi
612 echo ${IBM_ARCH}-ibm-aix${IBM_REV}
Tim Rice5f707582005-06-01 19:57:45 -0700613 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000614 *:AIX:*:*)
615 echo rs6000-ibm-aix
Tim Rice5f707582005-06-01 19:57:45 -0700616 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000617 ibmrt:4.4BSD:*|romp-ibm:BSD:*)
618 echo romp-ibm-bsd4.4
Tim Rice5f707582005-06-01 19:57:45 -0700619 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000620 ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and
621 echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to
Tim Rice5f707582005-06-01 19:57:45 -0700622 exit ;; # report: romp-ibm BSD 4.3
Damien Millerb405d612000-06-12 23:01:02 +1000623 *:BOSX:*:*)
624 echo rs6000-bull-bosx
Tim Rice5f707582005-06-01 19:57:45 -0700625 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000626 DPX/2?00:B.O.S.:*:*)
627 echo m68k-bull-sysv3
Tim Rice5f707582005-06-01 19:57:45 -0700628 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000629 9000/[34]??:4.3bsd:1.*:*)
630 echo m68k-hp-bsd
Tim Rice5f707582005-06-01 19:57:45 -0700631 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000632 hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*)
633 echo m68k-hp-bsd4.4
Tim Rice5f707582005-06-01 19:57:45 -0700634 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000635 9000/[34678]??:HP-UX:*:*)
Damien Miller5bf5f2c2001-05-06 10:54:15 +1000636 HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
Damien Millerb405d612000-06-12 23:01:02 +1000637 case "${UNAME_MACHINE}" in
638 9000/31? ) HP_ARCH=m68000 ;;
639 9000/[34]?? ) HP_ARCH=m68k ;;
640 9000/[678][0-9][0-9])
Tim Rice92c1fc42002-02-18 15:18:56 -0800641 if [ -x /usr/bin/getconf ]; then
642 sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null`
Damien Millerbc68f242013-04-18 11:26:25 +1000643 sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null`
644 case "${sc_cpu_version}" in
Damien Miller23902e32016-08-02 10:48:04 +1000645 523) HP_ARCH=hppa1.0 ;; # CPU_PA_RISC1_0
646 528) HP_ARCH=hppa1.1 ;; # CPU_PA_RISC1_1
Damien Millerbc68f242013-04-18 11:26:25 +1000647 532) # CPU_PA_RISC2_0
648 case "${sc_kernel_bits}" in
Damien Miller23902e32016-08-02 10:48:04 +1000649 32) HP_ARCH=hppa2.0n ;;
650 64) HP_ARCH=hppa2.0w ;;
651 '') HP_ARCH=hppa2.0 ;; # HP-UX 10.20
Damien Millerbc68f242013-04-18 11:26:25 +1000652 esac ;;
653 esac
Tim Rice92c1fc42002-02-18 15:18:56 -0800654 fi
655 if [ "${HP_ARCH}" = "" ]; then
656 eval $set_cc_for_build
Damien Millerbc68f242013-04-18 11:26:25 +1000657 sed 's/^ //' << EOF >$dummy.c
Damien Millerb405d612000-06-12 23:01:02 +1000658
Damien Millerbc68f242013-04-18 11:26:25 +1000659 #define _HPUX_SOURCE
660 #include <stdlib.h>
661 #include <unistd.h>
Damien Millerb405d612000-06-12 23:01:02 +1000662
Damien Millerbc68f242013-04-18 11:26:25 +1000663 int main ()
664 {
665 #if defined(_SC_KERNEL_BITS)
666 long bits = sysconf(_SC_KERNEL_BITS);
667 #endif
668 long cpu = sysconf (_SC_CPU_VERSION);
Damien Millerb405d612000-06-12 23:01:02 +1000669
Damien Millerbc68f242013-04-18 11:26:25 +1000670 switch (cpu)
671 {
672 case CPU_PA_RISC1_0: puts ("hppa1.0"); break;
673 case CPU_PA_RISC1_1: puts ("hppa1.1"); break;
674 case CPU_PA_RISC2_0:
675 #if defined(_SC_KERNEL_BITS)
676 switch (bits)
677 {
678 case 64: puts ("hppa2.0w"); break;
679 case 32: puts ("hppa2.0n"); break;
680 default: puts ("hppa2.0"); break;
681 } break;
682 #else /* !defined(_SC_KERNEL_BITS) */
683 puts ("hppa2.0"); break;
684 #endif
685 default: puts ("hppa1.0"); break;
686 }
687 exit (0);
688 }
Damien Millerb405d612000-06-12 23:01:02 +1000689EOF
Damien Miller23902e32016-08-02 10:48:04 +1000690 (CCOPTS="" $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy`
Damien Miller752e4e62004-04-21 12:29:13 +1000691 test -z "$HP_ARCH" && HP_ARCH=hppa
Tim Rice92c1fc42002-02-18 15:18:56 -0800692 fi ;;
Damien Millerb405d612000-06-12 23:01:02 +1000693 esac
Damien Miller23902e32016-08-02 10:48:04 +1000694 if [ ${HP_ARCH} = hppa2.0w ]
Damien Miller752e4e62004-04-21 12:29:13 +1000695 then
Darren Tuckerc570ff72008-09-06 18:20:57 +1000696 eval $set_cc_for_build
Tim Rice5f707582005-06-01 19:57:45 -0700697
698 # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating
699 # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler
700 # generating 64-bit code. GNU and HP use different nomenclature:
701 #
702 # $ CC_FOR_BUILD=cc ./config.guess
703 # => hppa2.0w-hp-hpux11.23
704 # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess
705 # => hppa64-hp-hpux11.23
706
Damien Miller23902e32016-08-02 10:48:04 +1000707 if echo __LP64__ | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) |
Tim Ricec5b0cb32010-03-01 15:57:42 -0800708 grep -q __LP64__
Damien Miller752e4e62004-04-21 12:29:13 +1000709 then
Damien Miller23902e32016-08-02 10:48:04 +1000710 HP_ARCH=hppa2.0w
Damien Miller752e4e62004-04-21 12:29:13 +1000711 else
Damien Miller23902e32016-08-02 10:48:04 +1000712 HP_ARCH=hppa64
Damien Miller752e4e62004-04-21 12:29:13 +1000713 fi
714 fi
Damien Millerb405d612000-06-12 23:01:02 +1000715 echo ${HP_ARCH}-hp-hpux${HPUX_REV}
Tim Rice5f707582005-06-01 19:57:45 -0700716 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +1000717 ia64:HP-UX:*:*)
718 HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
719 echo ia64-hp-hpux${HPUX_REV}
Tim Rice5f707582005-06-01 19:57:45 -0700720 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000721 3050*:HI-UX:*:*)
Tim Rice92c1fc42002-02-18 15:18:56 -0800722 eval $set_cc_for_build
Damien Millerb405d612000-06-12 23:01:02 +1000723 sed 's/^ //' << EOF >$dummy.c
724 #include <unistd.h>
725 int
726 main ()
727 {
728 long cpu = sysconf (_SC_CPU_VERSION);
729 /* The order matters, because CPU_IS_HP_MC68K erroneously returns
730 true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct
731 results, however. */
732 if (CPU_IS_PA_RISC (cpu))
733 {
734 switch (cpu)
735 {
736 case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break;
737 case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break;
738 case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break;
739 default: puts ("hppa-hitachi-hiuxwe2"); break;
740 }
741 }
742 else if (CPU_IS_HP_MC68K (cpu))
743 puts ("m68k-hitachi-hiuxwe2");
744 else puts ("unknown-hitachi-hiuxwe2");
745 exit (0);
746 }
747EOF
Tim Rice5f707582005-06-01 19:57:45 -0700748 $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` &&
749 { echo "$SYSTEM_NAME"; exit; }
Damien Millerb405d612000-06-12 23:01:02 +1000750 echo unknown-hitachi-hiuxwe2
Tim Rice5f707582005-06-01 19:57:45 -0700751 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000752 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* )
753 echo hppa1.1-hp-bsd
Tim Rice5f707582005-06-01 19:57:45 -0700754 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000755 9000/8??:4.3bsd:*:*)
756 echo hppa1.0-hp-bsd
Tim Rice5f707582005-06-01 19:57:45 -0700757 exit ;;
Tim Rice92c1fc42002-02-18 15:18:56 -0800758 *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*)
Damien Millerb405d612000-06-12 23:01:02 +1000759 echo hppa1.0-hp-mpeix
Tim Rice5f707582005-06-01 19:57:45 -0700760 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000761 hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* )
762 echo hppa1.1-hp-osf
Tim Rice5f707582005-06-01 19:57:45 -0700763 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000764 hp8??:OSF1:*:*)
765 echo hppa1.0-hp-osf
Tim Rice5f707582005-06-01 19:57:45 -0700766 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +1000767 i*86:OSF1:*:*)
Damien Millerb405d612000-06-12 23:01:02 +1000768 if [ -x /usr/sbin/sysversion ] ; then
769 echo ${UNAME_MACHINE}-unknown-osf1mk
770 else
771 echo ${UNAME_MACHINE}-unknown-osf1
772 fi
Tim Rice5f707582005-06-01 19:57:45 -0700773 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000774 parisc*:Lites*:*:*)
775 echo hppa1.1-hp-lites
Tim Rice5f707582005-06-01 19:57:45 -0700776 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000777 C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)
778 echo c1-convex-bsd
Damien Millerbc68f242013-04-18 11:26:25 +1000779 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000780 C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*)
781 if getsysinfo -f scalar_acc
782 then echo c32-convex-bsd
783 else echo c2-convex-bsd
784 fi
Damien Millerbc68f242013-04-18 11:26:25 +1000785 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000786 C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*)
787 echo c34-convex-bsd
Damien Millerbc68f242013-04-18 11:26:25 +1000788 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000789 C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*)
790 echo c38-convex-bsd
Damien Millerbc68f242013-04-18 11:26:25 +1000791 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000792 C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*)
793 echo c4-convex-bsd
Damien Millerbc68f242013-04-18 11:26:25 +1000794 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000795 CRAY*Y-MP:*:*:*)
Tim Rice92c1fc42002-02-18 15:18:56 -0800796 echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
Tim Rice5f707582005-06-01 19:57:45 -0700797 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000798 CRAY*[A-Z]90:*:*:*)
799 echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \
800 | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \
Tim Rice92c1fc42002-02-18 15:18:56 -0800801 -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \
802 -e 's/\.[^.]*$/.X/'
Tim Rice5f707582005-06-01 19:57:45 -0700803 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000804 CRAY*TS:*:*:*)
805 echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
Tim Rice5f707582005-06-01 19:57:45 -0700806 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +1000807 CRAY*T3E:*:*:*)
808 echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
Tim Rice5f707582005-06-01 19:57:45 -0700809 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000810 CRAY*SV1:*:*:*)
811 echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
Tim Rice5f707582005-06-01 19:57:45 -0700812 exit ;;
Ben Lindstroma5a26482003-03-21 01:05:37 +0000813 *:UNICOS/mp:*:*)
Tim Rice5f707582005-06-01 19:57:45 -0700814 echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
815 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +1000816 F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*)
Damien Miller23902e32016-08-02 10:48:04 +1000817 FUJITSU_PROC=`uname -m | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`
818 FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'`
Damien Millerbc68f242013-04-18 11:26:25 +1000819 FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`
820 echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
821 exit ;;
Tim Rice5f707582005-06-01 19:57:45 -0700822 5000:UNIX_System_V:4.*:*)
Damien Miller23902e32016-08-02 10:48:04 +1000823 FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'`
824 FUJITSU_REL=`echo ${UNAME_RELEASE} | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'`
Damien Millerbc68f242013-04-18 11:26:25 +1000825 echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
Tim Rice5f707582005-06-01 19:57:45 -0700826 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +1000827 i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*)
Damien Millerb405d612000-06-12 23:01:02 +1000828 echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -0700829 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000830 sparc*:BSD/OS:*:*)
831 echo sparc-unknown-bsdi${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -0700832 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000833 *:BSD/OS:*:*)
834 echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -0700835 exit ;;
836 *:FreeBSD:*:*)
Damien Millerbc68f242013-04-18 11:26:25 +1000837 UNAME_PROCESSOR=`/usr/bin/uname -p`
838 case ${UNAME_PROCESSOR} in
Darren Tuckerc570ff72008-09-06 18:20:57 +1000839 amd64)
840 echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
841 *)
Damien Millerbc68f242013-04-18 11:26:25 +1000842 echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
Darren Tuckerc570ff72008-09-06 18:20:57 +1000843 esac
Tim Rice5f707582005-06-01 19:57:45 -0700844 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000845 i*:CYGWIN*:*)
846 echo ${UNAME_MACHINE}-pc-cygwin
Tim Rice5f707582005-06-01 19:57:45 -0700847 exit ;;
Damien Millerbc68f242013-04-18 11:26:25 +1000848 *:MINGW64*:*)
849 echo ${UNAME_MACHINE}-pc-mingw64
850 exit ;;
Darren Tuckerc570ff72008-09-06 18:20:57 +1000851 *:MINGW*:*)
Damien Millerb405d612000-06-12 23:01:02 +1000852 echo ${UNAME_MACHINE}-pc-mingw32
Tim Rice5f707582005-06-01 19:57:45 -0700853 exit ;;
Damien Miller23902e32016-08-02 10:48:04 +1000854 *:MSYS*:*)
Damien Millerbc68f242013-04-18 11:26:25 +1000855 echo ${UNAME_MACHINE}-pc-msys
856 exit ;;
Tim Rice5f707582005-06-01 19:57:45 -0700857 i*:windows32*:*)
Damien Millerbc68f242013-04-18 11:26:25 +1000858 # uname -m includes "-pc" on this system.
859 echo ${UNAME_MACHINE}-mingw32
Tim Rice5f707582005-06-01 19:57:45 -0700860 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +1000861 i*:PW*:*)
862 echo ${UNAME_MACHINE}-pc-pw32
Tim Rice5f707582005-06-01 19:57:45 -0700863 exit ;;
Tim Ricec5b0cb32010-03-01 15:57:42 -0800864 *:Interix*:*)
Damien Millerbc68f242013-04-18 11:26:25 +1000865 case ${UNAME_MACHINE} in
Darren Tuckerc570ff72008-09-06 18:20:57 +1000866 x86)
867 echo i586-pc-interix${UNAME_RELEASE}
868 exit ;;
Tim Ricec5b0cb32010-03-01 15:57:42 -0800869 authenticamd | genuineintel | EM64T)
Darren Tuckerc570ff72008-09-06 18:20:57 +1000870 echo x86_64-unknown-interix${UNAME_RELEASE}
871 exit ;;
872 IA64)
873 echo ia64-unknown-interix${UNAME_RELEASE}
874 exit ;;
875 esac ;;
Damien Miller752e4e62004-04-21 12:29:13 +1000876 [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
877 echo i${UNAME_MACHINE}-pc-mks
Tim Rice5f707582005-06-01 19:57:45 -0700878 exit ;;
Tim Ricec5b0cb32010-03-01 15:57:42 -0800879 8664:Windows_NT:*)
880 echo x86_64-pc-mks
881 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000882 i*:Windows_NT*:* | Pentium*:Windows_NT*:*)
883 # How do we know it's Interix rather than the generic POSIX subsystem?
884 # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we
885 # UNAME_MACHINE based on the output of uname instead of i386?
Damien Miller752e4e62004-04-21 12:29:13 +1000886 echo i586-pc-interix
Tim Rice5f707582005-06-01 19:57:45 -0700887 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000888 i*:UWIN*:*)
889 echo ${UNAME_MACHINE}-pc-uwin
Tim Rice5f707582005-06-01 19:57:45 -0700890 exit ;;
Darren Tuckerc570ff72008-09-06 18:20:57 +1000891 amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*)
Tim Rice5f707582005-06-01 19:57:45 -0700892 echo x86_64-unknown-cygwin
893 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000894 p*:CYGWIN*:*)
895 echo powerpcle-unknown-cygwin
Tim Rice5f707582005-06-01 19:57:45 -0700896 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000897 prep*:SunOS:5.*:*)
898 echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
Tim Rice5f707582005-06-01 19:57:45 -0700899 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +1000900 *:GNU:*:*)
Tim Rice5f707582005-06-01 19:57:45 -0700901 # the GNU system
Damien Miller23902e32016-08-02 10:48:04 +1000902 echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
Tim Rice5f707582005-06-01 19:57:45 -0700903 exit ;;
904 *:GNU/*:*:*)
905 # other systems with GNU libc and userland
Damien Miller23902e32016-08-02 10:48:04 +1000906 echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC}
Tim Rice5f707582005-06-01 19:57:45 -0700907 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +1000908 i*86:Minix:*:*)
909 echo ${UNAME_MACHINE}-pc-minix
Tim Rice5f707582005-06-01 19:57:45 -0700910 exit ;;
Damien Millerbc68f242013-04-18 11:26:25 +1000911 aarch64:Linux:*:*)
Damien Miller23902e32016-08-02 10:48:04 +1000912 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Damien Millerbc68f242013-04-18 11:26:25 +1000913 exit ;;
914 aarch64_be:Linux:*:*)
915 UNAME_MACHINE=aarch64_be
Damien Miller23902e32016-08-02 10:48:04 +1000916 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Damien Millerbc68f242013-04-18 11:26:25 +1000917 exit ;;
Tim Ricec5b0cb32010-03-01 15:57:42 -0800918 alpha:Linux:*:*)
919 case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
920 EV5) UNAME_MACHINE=alphaev5 ;;
921 EV56) UNAME_MACHINE=alphaev56 ;;
922 PCA56) UNAME_MACHINE=alphapca56 ;;
923 PCA57) UNAME_MACHINE=alphapca56 ;;
924 EV6) UNAME_MACHINE=alphaev6 ;;
925 EV67) UNAME_MACHINE=alphaev67 ;;
926 EV68*) UNAME_MACHINE=alphaev68 ;;
Damien Millerbc68f242013-04-18 11:26:25 +1000927 esac
Tim Ricec5b0cb32010-03-01 15:57:42 -0800928 objdump --private-headers /bin/sh | grep -q ld.so.1
Damien Miller23902e32016-08-02 10:48:04 +1000929 if test "$?" = 0 ; then LIBC=gnulibc1 ; fi
930 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
931 exit ;;
932 arc:Linux:*:* | arceb:Linux:*:*)
933 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Tim Ricec5b0cb32010-03-01 15:57:42 -0800934 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +1000935 arm*:Linux:*:*)
Darren Tuckerc570ff72008-09-06 18:20:57 +1000936 eval $set_cc_for_build
937 if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \
938 | grep -q __ARM_EABI__
939 then
Damien Miller23902e32016-08-02 10:48:04 +1000940 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Darren Tuckerc570ff72008-09-06 18:20:57 +1000941 else
Damien Millerbc68f242013-04-18 11:26:25 +1000942 if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \
943 | grep -q __ARM_PCS_VFP
944 then
Damien Miller23902e32016-08-02 10:48:04 +1000945 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi
Damien Millerbc68f242013-04-18 11:26:25 +1000946 else
Damien Miller23902e32016-08-02 10:48:04 +1000947 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf
Damien Millerbc68f242013-04-18 11:26:25 +1000948 fi
Darren Tuckerc570ff72008-09-06 18:20:57 +1000949 fi
950 exit ;;
951 avr32*:Linux:*:*)
Damien Miller23902e32016-08-02 10:48:04 +1000952 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Tim Rice5f707582005-06-01 19:57:45 -0700953 exit ;;
Damien Miller752e4e62004-04-21 12:29:13 +1000954 cris:Linux:*:*)
Damien Miller23902e32016-08-02 10:48:04 +1000955 echo ${UNAME_MACHINE}-axis-linux-${LIBC}
Tim Rice5f707582005-06-01 19:57:45 -0700956 exit ;;
957 crisv32:Linux:*:*)
Damien Miller23902e32016-08-02 10:48:04 +1000958 echo ${UNAME_MACHINE}-axis-linux-${LIBC}
959 exit ;;
960 e2k:Linux:*:*)
961 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Tim Rice5f707582005-06-01 19:57:45 -0700962 exit ;;
963 frv:Linux:*:*)
Damien Miller23902e32016-08-02 10:48:04 +1000964 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Damien Millerbc68f242013-04-18 11:26:25 +1000965 exit ;;
966 hexagon:Linux:*:*)
Damien Miller23902e32016-08-02 10:48:04 +1000967 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Tim Rice5f707582005-06-01 19:57:45 -0700968 exit ;;
Tim Ricec5b0cb32010-03-01 15:57:42 -0800969 i*86:Linux:*:*)
Damien Miller23902e32016-08-02 10:48:04 +1000970 echo ${UNAME_MACHINE}-pc-linux-${LIBC}
Tim Ricec5b0cb32010-03-01 15:57:42 -0800971 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +1000972 ia64:Linux:*:*)
Damien Miller23902e32016-08-02 10:48:04 +1000973 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
974 exit ;;
975 k1om:Linux:*:*)
976 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Tim Rice5f707582005-06-01 19:57:45 -0700977 exit ;;
978 m32r*:Linux:*:*)
Damien Miller23902e32016-08-02 10:48:04 +1000979 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Tim Rice5f707582005-06-01 19:57:45 -0700980 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +1000981 m68*:Linux:*:*)
Damien Miller23902e32016-08-02 10:48:04 +1000982 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Tim Rice5f707582005-06-01 19:57:45 -0700983 exit ;;
Tim Ricec5b0cb32010-03-01 15:57:42 -0800984 mips:Linux:*:* | mips64:Linux:*:*)
Tim Rice92c1fc42002-02-18 15:18:56 -0800985 eval $set_cc_for_build
986 sed 's/^ //' << EOF >$dummy.c
987 #undef CPU
Tim Ricec5b0cb32010-03-01 15:57:42 -0800988 #undef ${UNAME_MACHINE}
989 #undef ${UNAME_MACHINE}el
Damien Millera7609f52002-07-25 14:40:22 +1000990 #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL)
Tim Ricec5b0cb32010-03-01 15:57:42 -0800991 CPU=${UNAME_MACHINE}el
Tim Rice92c1fc42002-02-18 15:18:56 -0800992 #else
Damien Millera7609f52002-07-25 14:40:22 +1000993 #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB)
Tim Ricec5b0cb32010-03-01 15:57:42 -0800994 CPU=${UNAME_MACHINE}
Tim Rice92c1fc42002-02-18 15:18:56 -0800995 #else
996 CPU=
997 #endif
Damien Millera7609f52002-07-25 14:40:22 +1000998 #endif
Damien Miller5bf5f2c2001-05-06 10:54:15 +1000999EOF
Tim Ricec5b0cb32010-03-01 15:57:42 -08001000 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'`
Damien Miller23902e32016-08-02 10:48:04 +10001001 test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; }
Damien Miller5bf5f2c2001-05-06 10:54:15 +10001002 ;;
Damien Miller23902e32016-08-02 10:48:04 +10001003 openrisc*:Linux:*:*)
1004 echo or1k-unknown-linux-${LIBC}
1005 exit ;;
1006 or32:Linux:*:* | or1k*:Linux:*:*)
1007 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Darren Tuckerc570ff72008-09-06 18:20:57 +10001008 exit ;;
Tim Ricec5b0cb32010-03-01 15:57:42 -08001009 padre:Linux:*:*)
Damien Miller23902e32016-08-02 10:48:04 +10001010 echo sparc-unknown-linux-${LIBC}
Tim Rice5f707582005-06-01 19:57:45 -07001011 exit ;;
Tim Ricec5b0cb32010-03-01 15:57:42 -08001012 parisc64:Linux:*:* | hppa64:Linux:*:*)
Damien Miller23902e32016-08-02 10:48:04 +10001013 echo hppa64-unknown-linux-${LIBC}
Tim Rice5f707582005-06-01 19:57:45 -07001014 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +10001015 parisc:Linux:*:* | hppa:Linux:*:*)
1016 # Look for CPU level
1017 case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in
Damien Miller23902e32016-08-02 10:48:04 +10001018 PA7*) echo hppa1.1-unknown-linux-${LIBC} ;;
1019 PA8*) echo hppa2.0-unknown-linux-${LIBC} ;;
1020 *) echo hppa-unknown-linux-${LIBC} ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +10001021 esac
Tim Rice5f707582005-06-01 19:57:45 -07001022 exit ;;
Tim Ricec5b0cb32010-03-01 15:57:42 -08001023 ppc64:Linux:*:*)
Damien Miller23902e32016-08-02 10:48:04 +10001024 echo powerpc64-unknown-linux-${LIBC}
Tim Ricec5b0cb32010-03-01 15:57:42 -08001025 exit ;;
1026 ppc:Linux:*:*)
Damien Miller23902e32016-08-02 10:48:04 +10001027 echo powerpc-unknown-linux-${LIBC}
Tim Rice5f707582005-06-01 19:57:45 -07001028 exit ;;
Darren Tuckeradfb24c2015-06-05 14:51:40 +10001029 ppc64le:Linux:*:*)
Damien Miller23902e32016-08-02 10:48:04 +10001030 echo powerpc64le-unknown-linux-${LIBC}
Darren Tuckeradfb24c2015-06-05 14:51:40 +10001031 exit ;;
1032 ppcle:Linux:*:*)
Damien Miller23902e32016-08-02 10:48:04 +10001033 echo powerpcle-unknown-linux-${LIBC}
Darren Tuckeradfb24c2015-06-05 14:51:40 +10001034 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +10001035 s390:Linux:*:* | s390x:Linux:*:*)
Damien Miller23902e32016-08-02 10:48:04 +10001036 echo ${UNAME_MACHINE}-ibm-linux-${LIBC}
Tim Rice5f707582005-06-01 19:57:45 -07001037 exit ;;
Damien Miller752e4e62004-04-21 12:29:13 +10001038 sh64*:Linux:*:*)
Damien Miller23902e32016-08-02 10:48:04 +10001039 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Tim Rice5f707582005-06-01 19:57:45 -07001040 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +10001041 sh*:Linux:*:*)
Damien Miller23902e32016-08-02 10:48:04 +10001042 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Tim Rice5f707582005-06-01 19:57:45 -07001043 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +10001044 sparc:Linux:*:* | sparc64:Linux:*:*)
Damien Miller23902e32016-08-02 10:48:04 +10001045 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Tim Rice5f707582005-06-01 19:57:45 -07001046 exit ;;
Tim Riced069c482011-01-26 12:32:12 -08001047 tile*:Linux:*:*)
Damien Miller23902e32016-08-02 10:48:04 +10001048 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Tim Riced069c482011-01-26 12:32:12 -08001049 exit ;;
Darren Tuckerc570ff72008-09-06 18:20:57 +10001050 vax:Linux:*:*)
Damien Miller23902e32016-08-02 10:48:04 +10001051 echo ${UNAME_MACHINE}-dec-linux-${LIBC}
Darren Tuckerc570ff72008-09-06 18:20:57 +10001052 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +10001053 x86_64:Linux:*:*)
Damien Miller23902e32016-08-02 10:48:04 +10001054 echo ${UNAME_MACHINE}-pc-linux-${LIBC}
Tim Rice5f707582005-06-01 19:57:45 -07001055 exit ;;
Darren Tuckerc570ff72008-09-06 18:20:57 +10001056 xtensa*:Linux:*:*)
Damien Miller23902e32016-08-02 10:48:04 +10001057 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Darren Tuckerc570ff72008-09-06 18:20:57 +10001058 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +10001059 i*86:DYNIX/ptx:4*:*)
Tim Rice92c1fc42002-02-18 15:18:56 -08001060 # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.
1061 # earlier versions are messed up and put the nodename in both
1062 # sysname and nodename.
Damien Millerb405d612000-06-12 23:01:02 +10001063 echo i386-sequent-sysv4
Tim Rice5f707582005-06-01 19:57:45 -07001064 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +10001065 i*86:UNIX_SV:4.2MP:2.*)
Damien Millerbc68f242013-04-18 11:26:25 +10001066 # Unixware is an offshoot of SVR4, but it has its own version
1067 # number series starting with 2...
1068 # I am not positive that other SVR4 systems won't match this,
Damien Millerb405d612000-06-12 23:01:02 +10001069 # I just have to hope. -- rms.
Damien Millerbc68f242013-04-18 11:26:25 +10001070 # Use sysv4.2uw... so that sysv4* matches it.
Damien Millerb405d612000-06-12 23:01:02 +10001071 echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION}
Tim Rice5f707582005-06-01 19:57:45 -07001072 exit ;;
Damien Miller752e4e62004-04-21 12:29:13 +10001073 i*86:OS/2:*:*)
1074 # If we were able to find `uname', then EMX Unix compatibility
1075 # is probably installed.
1076 echo ${UNAME_MACHINE}-pc-os2-emx
Tim Rice5f707582005-06-01 19:57:45 -07001077 exit ;;
Damien Miller752e4e62004-04-21 12:29:13 +10001078 i*86:XTS-300:*:STOP)
1079 echo ${UNAME_MACHINE}-unknown-stop
Tim Rice5f707582005-06-01 19:57:45 -07001080 exit ;;
Damien Miller752e4e62004-04-21 12:29:13 +10001081 i*86:atheos:*:*)
1082 echo ${UNAME_MACHINE}-unknown-atheos
Tim Rice5f707582005-06-01 19:57:45 -07001083 exit ;;
1084 i*86:syllable:*:*)
1085 echo ${UNAME_MACHINE}-pc-syllable
1086 exit ;;
Tim Ricec5b0cb32010-03-01 15:57:42 -08001087 i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*)
Damien Miller752e4e62004-04-21 12:29:13 +10001088 echo i386-unknown-lynxos${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -07001089 exit ;;
Damien Miller752e4e62004-04-21 12:29:13 +10001090 i*86:*DOS:*:*)
1091 echo ${UNAME_MACHINE}-pc-msdosdjgpp
Tim Rice5f707582005-06-01 19:57:45 -07001092 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +10001093 i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*)
Damien Millerb405d612000-06-12 23:01:02 +10001094 UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'`
1095 if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
1096 echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL}
1097 else
1098 echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL}
1099 fi
Tim Rice5f707582005-06-01 19:57:45 -07001100 exit ;;
Tim Rice4149ebc2005-04-23 18:17:29 -07001101 i*86:*:5:[678]*)
Damien Millerbc68f242013-04-18 11:26:25 +10001102 # UnixWare 7.x, OpenUNIX and OpenServer 6.
Tim Rice92c1fc42002-02-18 15:18:56 -08001103 case `/bin/uname -X | grep "^Machine"` in
1104 *486*) UNAME_MACHINE=i486 ;;
1105 *Pentium) UNAME_MACHINE=i586 ;;
1106 *Pent*|*Celeron) UNAME_MACHINE=i686 ;;
1107 esac
1108 echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION}
Tim Rice5f707582005-06-01 19:57:45 -07001109 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +10001110 i*86:*:3.2:*)
Damien Millerb405d612000-06-12 23:01:02 +10001111 if test -f /usr/options/cb.name; then
1112 UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name`
1113 echo ${UNAME_MACHINE}-pc-isc$UNAME_REL
1114 elif /bin/uname -X 2>/dev/null >/dev/null ; then
Damien Millera7609f52002-07-25 14:40:22 +10001115 UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')`
1116 (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486
1117 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \
Damien Millerb405d612000-06-12 23:01:02 +10001118 && UNAME_MACHINE=i586
Damien Millera7609f52002-07-25 14:40:22 +10001119 (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \
Damien Millerb405d612000-06-12 23:01:02 +10001120 && UNAME_MACHINE=i686
Damien Millera7609f52002-07-25 14:40:22 +10001121 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \
Damien Millerb405d612000-06-12 23:01:02 +10001122 && UNAME_MACHINE=i686
1123 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL
1124 else
1125 echo ${UNAME_MACHINE}-pc-sysv32
1126 fi
Tim Rice5f707582005-06-01 19:57:45 -07001127 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +10001128 pc:*:*:*)
1129 # Left here for compatibility:
Damien Millerbc68f242013-04-18 11:26:25 +10001130 # uname -m prints for DJGPP always 'pc', but it prints nothing about
1131 # the processor, so we play safe by assuming i586.
Tim Ricec5b0cb32010-03-01 15:57:42 -08001132 # Note: whatever this is, it MUST be the same as what config.sub
Damien Miller23902e32016-08-02 10:48:04 +10001133 # prints for the "djgpp" host, or else GDB configure will decide that
Tim Ricec5b0cb32010-03-01 15:57:42 -08001134 # this is a cross-build.
1135 echo i586-pc-msdosdjgpp
Damien Millerbc68f242013-04-18 11:26:25 +10001136 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +10001137 Intel:Mach:3*:*)
1138 echo i386-pc-mach3
Tim Rice5f707582005-06-01 19:57:45 -07001139 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +10001140 paragon:*:*:*)
1141 echo i860-intel-osf1
Tim Rice5f707582005-06-01 19:57:45 -07001142 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +10001143 i860:*:4.*:*) # i860-SVR4
1144 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then
1145 echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4
1146 else # Add other i860-SVR4 vendors below as they are discovered.
1147 echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4
1148 fi
Tim Rice5f707582005-06-01 19:57:45 -07001149 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +10001150 mini*:CTIX:SYS*5:*)
1151 # "miniframe"
1152 echo m68010-convergent-sysv
Tim Rice5f707582005-06-01 19:57:45 -07001153 exit ;;
Damien Miller752e4e62004-04-21 12:29:13 +10001154 mc68k:UNIX:SYSTEM5:3.51m)
1155 echo m68k-convergent-sysv
Tim Rice5f707582005-06-01 19:57:45 -07001156 exit ;;
Damien Miller752e4e62004-04-21 12:29:13 +10001157 M680?0:D-NIX:5.3:*)
1158 echo m68k-diab-dnix
Tim Rice5f707582005-06-01 19:57:45 -07001159 exit ;;
1160 M68*:*:R3V[5678]*:*)
1161 test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;;
1162 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)
Damien Millerb405d612000-06-12 23:01:02 +10001163 OS_REL=''
1164 test -r /etc/.relid \
1165 && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
1166 /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
Tim Rice5f707582005-06-01 19:57:45 -07001167 && { echo i486-ncr-sysv4.3${OS_REL}; exit; }
Damien Millerb405d612000-06-12 23:01:02 +10001168 /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
Tim Rice5f707582005-06-01 19:57:45 -07001169 && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;
Damien Millerb405d612000-06-12 23:01:02 +10001170 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
Damien Millerbc68f242013-04-18 11:26:25 +10001171 /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
1172 && { echo i486-ncr-sysv4; exit; } ;;
Tim Ricec5b0cb32010-03-01 15:57:42 -08001173 NCR*:*:4.2:* | MPRAS*:*:4.2:*)
1174 OS_REL='.3'
1175 test -r /etc/.relid \
1176 && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
1177 /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
1178 && { echo i486-ncr-sysv4.3${OS_REL}; exit; }
1179 /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
1180 && { echo i586-ncr-sysv4.3${OS_REL}; exit; }
1181 /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \
1182 && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +10001183 m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*)
Damien Millerb405d612000-06-12 23:01:02 +10001184 echo m68k-unknown-lynxos${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -07001185 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +10001186 mc68030:UNIX_System_V:4.*:*)
1187 echo m68k-atari-sysv4
Tim Rice5f707582005-06-01 19:57:45 -07001188 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +10001189 TSUNAMI:LynxOS:2.*:*)
1190 echo sparc-unknown-lynxos${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -07001191 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +10001192 rs6000:LynxOS:2.*:*)
Damien Millerb405d612000-06-12 23:01:02 +10001193 echo rs6000-unknown-lynxos${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -07001194 exit ;;
Tim Ricec5b0cb32010-03-01 15:57:42 -08001195 PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*)
Damien Miller5bf5f2c2001-05-06 10:54:15 +10001196 echo powerpc-unknown-lynxos${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -07001197 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +10001198 SM[BE]S:UNIX_SV:*:*)
1199 echo mips-dde-sysv${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -07001200 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +10001201 RM*:ReliantUNIX-*:*:*)
1202 echo mips-sni-sysv4
Tim Rice5f707582005-06-01 19:57:45 -07001203 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +10001204 RM*:SINIX-*:*:*)
1205 echo mips-sni-sysv4
Tim Rice5f707582005-06-01 19:57:45 -07001206 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +10001207 *:SINIX-*:*:*)
1208 if uname -p 2>/dev/null >/dev/null ; then
1209 UNAME_MACHINE=`(uname -p) 2>/dev/null`
1210 echo ${UNAME_MACHINE}-sni-sysv4
1211 else
1212 echo ns32k-sni-sysv
1213 fi
Tim Rice5f707582005-06-01 19:57:45 -07001214 exit ;;
Damien Millerbc68f242013-04-18 11:26:25 +10001215 PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort
1216 # says <Richard.M.Bartel@ccMail.Census.GOV>
1217 echo i586-unisys-sysv4
1218 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +10001219 *:UNIX_System_V:4*:FTX*)
1220 # From Gerald Hewes <hewes@openmarket.com>.
1221 # How about differentiating between stratus architectures? -djm
1222 echo hppa1.1-stratus-sysv4
Tim Rice5f707582005-06-01 19:57:45 -07001223 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +10001224 *:*:*:FTX*)
1225 # From seanf@swdc.stratus.com.
1226 echo i860-stratus-sysv4
Tim Rice5f707582005-06-01 19:57:45 -07001227 exit ;;
1228 i*86:VOS:*:*)
1229 # From Paul.Green@stratus.com.
1230 echo ${UNAME_MACHINE}-stratus-vos
1231 exit ;;
Tim Rice92c1fc42002-02-18 15:18:56 -08001232 *:VOS:*:*)
1233 # From Paul.Green@stratus.com.
1234 echo hppa1.1-stratus-vos
Tim Rice5f707582005-06-01 19:57:45 -07001235 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +10001236 mc68*:A/UX:*:*)
1237 echo m68k-apple-aux${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -07001238 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +10001239 news*:NEWS-OS:6*:*)
Damien Millerb405d612000-06-12 23:01:02 +10001240 echo mips-sony-newsos6
Tim Rice5f707582005-06-01 19:57:45 -07001241 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +10001242 R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*)
1243 if [ -d /usr/nec ]; then
Damien Millerbc68f242013-04-18 11:26:25 +10001244 echo mips-nec-sysv${UNAME_RELEASE}
Damien Millerb405d612000-06-12 23:01:02 +10001245 else
Damien Millerbc68f242013-04-18 11:26:25 +10001246 echo mips-unknown-sysv${UNAME_RELEASE}
Damien Millerb405d612000-06-12 23:01:02 +10001247 fi
Damien Millerbc68f242013-04-18 11:26:25 +10001248 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +10001249 BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only.
1250 echo powerpc-be-beos
Tim Rice5f707582005-06-01 19:57:45 -07001251 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +10001252 BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only.
1253 echo powerpc-apple-beos
Tim Rice5f707582005-06-01 19:57:45 -07001254 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +10001255 BePC:BeOS:*:*) # BeOS running on Intel PC compatible.
1256 echo i586-pc-beos
Tim Rice5f707582005-06-01 19:57:45 -07001257 exit ;;
Darren Tuckerc570ff72008-09-06 18:20:57 +10001258 BePC:Haiku:*:*) # Haiku running on Intel PC compatible.
1259 echo i586-pc-haiku
1260 exit ;;
Damien Millerbc68f242013-04-18 11:26:25 +10001261 x86_64:Haiku:*:*)
1262 echo x86_64-unknown-haiku
1263 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +10001264 SX-4:SUPER-UX:*:*)
1265 echo sx4-nec-superux${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -07001266 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +10001267 SX-5:SUPER-UX:*:*)
1268 echo sx5-nec-superux${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -07001269 exit ;;
Damien Miller752e4e62004-04-21 12:29:13 +10001270 SX-6:SUPER-UX:*:*)
1271 echo sx6-nec-superux${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -07001272 exit ;;
Darren Tuckerc570ff72008-09-06 18:20:57 +10001273 SX-7:SUPER-UX:*:*)
1274 echo sx7-nec-superux${UNAME_RELEASE}
1275 exit ;;
1276 SX-8:SUPER-UX:*:*)
1277 echo sx8-nec-superux${UNAME_RELEASE}
1278 exit ;;
1279 SX-8R:SUPER-UX:*:*)
1280 echo sx8r-nec-superux${UNAME_RELEASE}
1281 exit ;;
Damien Miller23902e32016-08-02 10:48:04 +10001282 SX-ACE:SUPER-UX:*:*)
1283 echo sxace-nec-superux${UNAME_RELEASE}
1284 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +10001285 Power*:Rhapsody:*:*)
1286 echo powerpc-apple-rhapsody${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -07001287 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +10001288 *:Rhapsody:*:*)
1289 echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -07001290 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +10001291 *:Darwin:*:*)
Tim Rice5f707582005-06-01 19:57:45 -07001292 UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown
Damien Miller23902e32016-08-02 10:48:04 +10001293 eval $set_cc_for_build
1294 if test "$UNAME_PROCESSOR" = unknown ; then
1295 UNAME_PROCESSOR=powerpc
1296 fi
1297 if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then
1298 if [ "$CC_FOR_BUILD" != no_compiler_found ]; then
1299 if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \
1300 (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
1301 grep IS_64BIT_ARCH >/dev/null
1302 then
1303 case $UNAME_PROCESSOR in
1304 i386) UNAME_PROCESSOR=x86_64 ;;
1305 powerpc) UNAME_PROCESSOR=powerpc64 ;;
1306 esac
1307 fi
1308 fi
1309 elif test "$UNAME_PROCESSOR" = i386 ; then
1310 # Avoid executing cc on OS X 10.9, as it ships with a stub
1311 # that puts up a graphical alert prompting to install
1312 # developer tools. Any system running Mac OS X 10.7 or
1313 # later (Darwin 11 and later) is required to have a 64-bit
1314 # processor. This is not true of the ARM version of Darwin
1315 # that Apple uses in portable devices.
1316 UNAME_PROCESSOR=x86_64
1317 fi
Damien Miller752e4e62004-04-21 12:29:13 +10001318 echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -07001319 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +10001320 *:procnto*:*:* | *:QNX:[0123456789]*:*)
Damien Millera7609f52002-07-25 14:40:22 +10001321 UNAME_PROCESSOR=`uname -p`
Damien Miller23902e32016-08-02 10:48:04 +10001322 if test "$UNAME_PROCESSOR" = x86; then
Damien Millera7609f52002-07-25 14:40:22 +10001323 UNAME_PROCESSOR=i386
Damien Millerb405d612000-06-12 23:01:02 +10001324 UNAME_MACHINE=pc
1325 fi
Damien Millera7609f52002-07-25 14:40:22 +10001326 echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -07001327 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +10001328 *:QNX:*:4*)
1329 echo i386-pc-qnx
Tim Rice5f707582005-06-01 19:57:45 -07001330 exit ;;
Tim Riced069c482011-01-26 12:32:12 -08001331 NEO-?:NONSTOP_KERNEL:*:*)
1332 echo neo-tandem-nsk${UNAME_RELEASE}
1333 exit ;;
Damien Millerbc68f242013-04-18 11:26:25 +10001334 NSE-*:NONSTOP_KERNEL:*:*)
Tim Rice5f707582005-06-01 19:57:45 -07001335 echo nse-tandem-nsk${UNAME_RELEASE}
1336 exit ;;
1337 NSR-?:NONSTOP_KERNEL:*:*)
Damien Millerb405d612000-06-12 23:01:02 +10001338 echo nsr-tandem-nsk${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -07001339 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +10001340 *:NonStop-UX:*:*)
1341 echo mips-compaq-nonstopux
Tim Rice5f707582005-06-01 19:57:45 -07001342 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +10001343 BS2000:POSIX*:*:*)
1344 echo bs2000-siemens-sysv
Tim Rice5f707582005-06-01 19:57:45 -07001345 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +10001346 DS/*:UNIX_System_V:*:*)
1347 echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -07001348 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +10001349 *:Plan9:*:*)
1350 # "uname -m" is not consistent, so use $cputype instead. 386
1351 # is converted to i386 for consistency with other x86
1352 # operating systems.
Damien Miller23902e32016-08-02 10:48:04 +10001353 if test "$cputype" = 386; then
Damien Miller5bf5f2c2001-05-06 10:54:15 +10001354 UNAME_MACHINE=i386
1355 else
1356 UNAME_MACHINE="$cputype"
1357 fi
1358 echo ${UNAME_MACHINE}-unknown-plan9
Tim Rice5f707582005-06-01 19:57:45 -07001359 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +10001360 *:TOPS-10:*:*)
1361 echo pdp10-unknown-tops10
Tim Rice5f707582005-06-01 19:57:45 -07001362 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +10001363 *:TENEX:*:*)
1364 echo pdp10-unknown-tenex
Tim Rice5f707582005-06-01 19:57:45 -07001365 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +10001366 KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*)
1367 echo pdp10-dec-tops20
Tim Rice5f707582005-06-01 19:57:45 -07001368 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +10001369 XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*)
1370 echo pdp10-xkl-tops20
Tim Rice5f707582005-06-01 19:57:45 -07001371 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +10001372 *:TOPS-20:*:*)
1373 echo pdp10-unknown-tops20
Tim Rice5f707582005-06-01 19:57:45 -07001374 exit ;;
Damien Miller5bf5f2c2001-05-06 10:54:15 +10001375 *:ITS:*:*)
1376 echo pdp10-unknown-its
Tim Rice5f707582005-06-01 19:57:45 -07001377 exit ;;
Damien Miller752e4e62004-04-21 12:29:13 +10001378 SEI:*:*:SEIUX)
Damien Millerbc68f242013-04-18 11:26:25 +10001379 echo mips-sei-seiux${UNAME_RELEASE}
Tim Rice5f707582005-06-01 19:57:45 -07001380 exit ;;
1381 *:DragonFly:*:*)
1382 echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
1383 exit ;;
1384 *:*VMS:*:*)
Damien Millerbc68f242013-04-18 11:26:25 +10001385 UNAME_MACHINE=`(uname -p) 2>/dev/null`
Tim Rice5f707582005-06-01 19:57:45 -07001386 case "${UNAME_MACHINE}" in
1387 A*) echo alpha-dec-vms ; exit ;;
1388 I*) echo ia64-dec-vms ; exit ;;
1389 V*) echo vax-dec-vms ; exit ;;
1390 esac ;;
1391 *:XENIX:*:SysV)
1392 echo i386-pc-xenix
1393 exit ;;
1394 i*86:skyos:*:*)
Damien Miller23902e32016-08-02 10:48:04 +10001395 echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE} | sed -e 's/ .*$//'`
Tim Rice5f707582005-06-01 19:57:45 -07001396 exit ;;
Darren Tuckerc570ff72008-09-06 18:20:57 +10001397 i*86:rdos:*:*)
1398 echo ${UNAME_MACHINE}-pc-rdos
1399 exit ;;
Tim Ricec5b0cb32010-03-01 15:57:42 -08001400 i*86:AROS:*:*)
1401 echo ${UNAME_MACHINE}-pc-aros
1402 exit ;;
Damien Millerbc68f242013-04-18 11:26:25 +10001403 x86_64:VMkernel:*:*)
1404 echo ${UNAME_MACHINE}-unknown-esx
1405 exit ;;
Damien Miller23902e32016-08-02 10:48:04 +10001406 amd64:Isilon\ OneFS:*:*)
1407 echo x86_64-unknown-onefs
1408 exit ;;
Damien Millerb405d612000-06-12 23:01:02 +10001409esac
1410
Damien Millerb405d612000-06-12 23:01:02 +10001411cat >&2 <<EOF
1412$0: unable to guess system type
1413
Damien Miller23902e32016-08-02 10:48:04 +10001414This script (version $timestamp), has failed to recognize the
1415operating system you are using. If your script is old, overwrite
1416config.guess and config.sub with the latest versions from:
Damien Millerb405d612000-06-12 23:01:02 +10001417
Damien Miller23902e32016-08-02 10:48:04 +10001418 http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
Tim Rice5f707582005-06-01 19:57:45 -07001419and
Damien Miller23902e32016-08-02 10:48:04 +10001420 http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub
Damien Millerb405d612000-06-12 23:01:02 +10001421
Damien Miller23902e32016-08-02 10:48:04 +10001422If $0 has already been updated, send the following data and any
1423information you think might be pertinent to config-patches@gnu.org to
1424provide the necessary information to handle your system.
Damien Millerb405d612000-06-12 23:01:02 +10001425
Damien Miller5bf5f2c2001-05-06 10:54:15 +10001426config.guess timestamp = $timestamp
Damien Millerb405d612000-06-12 23:01:02 +10001427
1428uname -m = `(uname -m) 2>/dev/null || echo unknown`
1429uname -r = `(uname -r) 2>/dev/null || echo unknown`
1430uname -s = `(uname -s) 2>/dev/null || echo unknown`
1431uname -v = `(uname -v) 2>/dev/null || echo unknown`
1432
1433/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null`
1434/bin/uname -X = `(/bin/uname -X) 2>/dev/null`
1435
1436hostinfo = `(hostinfo) 2>/dev/null`
1437/bin/universe = `(/bin/universe) 2>/dev/null`
1438/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null`
1439/bin/arch = `(/bin/arch) 2>/dev/null`
1440/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null`
1441/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null`
1442
1443UNAME_MACHINE = ${UNAME_MACHINE}
1444UNAME_RELEASE = ${UNAME_RELEASE}
1445UNAME_SYSTEM = ${UNAME_SYSTEM}
1446UNAME_VERSION = ${UNAME_VERSION}
1447EOF
1448
1449exit 1
1450
1451# Local variables:
1452# eval: (add-hook 'write-file-hooks 'time-stamp)
Damien Miller5bf5f2c2001-05-06 10:54:15 +10001453# time-stamp-start: "timestamp='"
Damien Millerb405d612000-06-12 23:01:02 +10001454# time-stamp-format: "%:y-%02m-%02d"
1455# time-stamp-end: "'"
1456# End: