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