]> git.ipfire.org Git - thirdparty/gcc.git/blame - config.guess
Remove spurious empty line from ChangeLog
[thirdparty/gcc.git] / config.guess
CommitLineData
6599da04
JM
1#! /bin/sh
2# Attempt to guess a canonical system name.
5227609c 3# Copyright 1992-2019 Free Software Foundation, Inc.
ef0b4ef8 4
5227609c 5timestamp='2019-01-03'
ef0b4ef8 6
6599da04
JM
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
6c9c2cf2 9# the Free Software Foundation; either version 3 of the License, or
6599da04
JM
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
ef7d7cf5 18# along with this program; if not, see <https://www.gnu.org/licenses/>.
6599da04
JM
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
6c9c2cf2
BE
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").
6599da04 26#
e4ff7e6a 27# Originally written by Per Bothner; maintained since 2000 by Ben Elliston.
6599da04 28#
d4c74acc 29# You can get the latest version of this script from:
ef7d7cf5 30# https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
6c9c2cf2 31#
e4ff7e6a 32# Please send patches to <config-patches@gnu.org>.
6c9c2cf2 33
6599da04 34
ef0b4ef8
PT
35me=`echo "$0" | sed -e 's,.*/,,'`
36
37usage="\
38Usage: $0 [OPTION]
39
ae3ca0a9 40Output the configuration name of the system \`$me' is run on.
ef0b4ef8 41
ef7d7cf5 42Options:
ae3ca0a9
PE
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.
5227609c 53Copyright 1992-2019 Free Software Foundation, Inc.
ae3ca0a9
PE
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."
ef0b4ef8
PT
57
58help="
59Try \`$me --help' for more information."
60
61# Parse command line
62while test $# -gt 0 ; do
ae3ca0a9
PE
63 case $1 in
64 --time-stamp | --time* | -t )
0063a823 65 echo "$timestamp" ; exit ;;
ae3ca0a9 66 --version | -v )
0063a823 67 echo "$version" ; exit ;;
ef0b4ef8 68 --help | --h* | -h )
0063a823 69 echo "$usage"; exit ;;
ef0b4ef8
PT
70 -- ) # Stop option processing
71 shift; break ;;
72 - ) # Use stdin as input.
73 break ;;
74 -* )
ae3ca0a9 75 echo "$me: invalid option $1$help" >&2
ef0b4ef8
PT
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
e2d83b8c
CD
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.
ae3ca0a9 91
ae3ca0a9
PE
92# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still
93# use `HOST_CC' if defined, but it is deprecated.
94
315fa0f4 95# Portable tmp directory creation inspired by the Autoconf team.
e2d83b8c 96
5227609c
RO
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}
b1345c72 125
6599da04 126# This is needed to find uname on a Pyramid OSx when run in the BSD universe.
f6084f99 127# (ghazi@noc.rutgers.edu 1994-08-24)
5227609c 128if test -f /.attbin/uname ; then
6599da04
JM
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
ae3ca0a9 134UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown
6599da04
JM
135UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
136
29305f60 137case "$UNAME_SYSTEM" in
2a3e690a
JR
138Linux|GNU|GNU/*)
139 # If the system lacks a compiler, then just pick glibc.
140 # We could probably try harder.
141 LIBC=gnu
142
5227609c 143 set_cc_for_build
29305f60 144 cat <<-EOF > "$dummy.c"
2a3e690a
JR
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
29305f60
BE
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
2a3e690a
JR
162 ;;
163esac
164
6599da04
JM
165# Note: order is significant - the case branches are not exclusive.
166
29305f60 167case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION" in
7a15eef5 168 *:NetBSD:*:*)
dd3a88c9 169 # NetBSD (nbsd) targets should (where applicable) match one or
6c9c2cf2 170 # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*,
7a15eef5
FS
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.
3cd87679
L
176 #
177 # Note: NetBSD doesn't particularly care about the vendor
178 # portion of the name. We always set it to "unknown".
4434687a 179 sysctl="sysctl -n hw.machine_arch"
d5e9bac5 180 UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \
29305f60
BE
181 "/sbin/$sysctl" 2>/dev/null || \
182 "/usr/sbin/$sysctl" 2>/dev/null || \
d5e9bac5 183 echo unknown)`
29305f60 184 case "$UNAME_MACHINE_ARCH" in
ac30211c 185 armeb) machine=armeb-unknown ;;
3cd87679
L
186 arm*) machine=arm-unknown ;;
187 sh3el) machine=shl-unknown ;;
188 sh3eb) machine=sh-unknown ;;
ace08cb8 189 sh5el) machine=sh5le-unknown ;;
d5e9bac5 190 earmv*)
29305f60
BE
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
d5e9bac5 194 ;;
29305f60 195 *) machine="$UNAME_MACHINE_ARCH"-unknown ;;
7a15eef5 196 esac
ae3ca0a9 197 # The Operating System including object format, if it has switched
292edab3 198 # to ELF recently (or will in the future) and ABI.
29305f60 199 case "$UNAME_MACHINE_ARCH" in
292edab3
BE
200 earm*)
201 os=netbsdelf
202 ;;
203 arm*|i386|m68k|ns32k|sh3*|sparc|vax)
5227609c 204 set_cc_for_build
ae3ca0a9 205 if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \
e9d9afef 206 | grep -q __ELF__
ae3ca0a9
PE
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 *)
41446fec 216 os=netbsd
ae3ca0a9
PE
217 ;;
218 esac
d5e9bac5 219 # Determine ABI tags.
29305f60 220 case "$UNAME_MACHINE_ARCH" in
d5e9bac5
BE
221 earm*)
222 expr='s/^earmv[0-9]/-eabi/;s/eb$//'
29305f60 223 abi=`echo "$UNAME_MACHINE_ARCH" | sed -e "$expr"`
d5e9bac5
BE
224 ;;
225 esac
7a15eef5 226 # The OS release
7f0db92a
SS
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.
29305f60 231 case "$UNAME_VERSION" in
7f0db92a
SS
232 Debian*)
233 release='-gnu'
234 ;;
235 *)
29305f60 236 release=`echo "$UNAME_RELEASE" | sed -e 's/[-_].*//' | cut -d. -f1,2`
7f0db92a
SS
237 ;;
238 esac
7a15eef5
FS
239 # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM:
240 # contains redundant information, the shorter form:
241 # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used.
29305f60 242 echo "$machine-${os}${release}${abi-}"
0063a823 243 exit ;;
6c9c2cf2
BE
244 *:Bitrig:*:*)
245 UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'`
29305f60 246 echo "$UNAME_MACHINE_ARCH"-unknown-bitrig"$UNAME_RELEASE"
6c9c2cf2 247 exit ;;
dd3a88c9 248 *:OpenBSD:*:*)
0063a823 249 UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'`
29305f60 250 echo "$UNAME_MACHINE_ARCH"-unknown-openbsd"$UNAME_RELEASE"
0063a823 251 exit ;;
fe38e08b
JS
252 *:LibertyBSD:*:*)
253 UNAME_MACHINE_ARCH=`arch | sed 's/^.*BSD\.//'`
29305f60 254 echo "$UNAME_MACHINE_ARCH"-unknown-libertybsd"$UNAME_RELEASE"
fe38e08b 255 exit ;;
ef7d7cf5 256 *:MidnightBSD:*:*)
29305f60 257 echo "$UNAME_MACHINE"-unknown-midnightbsd"$UNAME_RELEASE"
ef7d7cf5 258 exit ;;
a7ca14fc 259 *:ekkoBSD:*:*)
29305f60 260 echo "$UNAME_MACHINE"-unknown-ekkobsd"$UNAME_RELEASE"
0063a823 261 exit ;;
8d1171cb 262 *:SolidBSD:*:*)
29305f60 263 echo "$UNAME_MACHINE"-unknown-solidbsd"$UNAME_RELEASE"
8d1171cb 264 exit ;;
a7ca14fc 265 macppc:MirBSD:*:*)
29305f60 266 echo powerpc-unknown-mirbsd"$UNAME_RELEASE"
0063a823 267 exit ;;
a7ca14fc 268 *:MirBSD:*:*)
29305f60 269 echo "$UNAME_MACHINE"-unknown-mirbsd"$UNAME_RELEASE"
0063a823 270 exit ;;
cfe67e03 271 *:Sortix:*:*)
29305f60 272 echo "$UNAME_MACHINE"-unknown-sortix
cfe67e03 273 exit ;;
ef7d7cf5 274 *:Redox:*:*)
29305f60 275 echo "$UNAME_MACHINE"-unknown-redox
ef7d7cf5
BE
276 exit ;;
277 mips:OSF1:*.*)
278 echo mips-dec-osf1
279 exit ;;
6599da04 280 alpha:OSF1:*:*)
fc4d0e82
NC
281 case $UNAME_RELEASE in
282 *4.0)
83cfe7c0 283 UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
fc4d0e82
NC
284 ;;
285 *5.*)
41446fec 286 UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'`
fc4d0e82
NC
287 ;;
288 esac
ccf9f10c
RS
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)")
fe38e08b 296 UNAME_MACHINE=alpha ;;
ccf9f10c 297 "EV4.5 (21064)")
fe38e08b 298 UNAME_MACHINE=alpha ;;
ccf9f10c 299 "LCA4 (21066/21068)")
fe38e08b 300 UNAME_MACHINE=alpha ;;
ccf9f10c 301 "EV5 (21164)")
fe38e08b 302 UNAME_MACHINE=alphaev5 ;;
ccf9f10c 303 "EV5.6 (21164A)")
fe38e08b 304 UNAME_MACHINE=alphaev56 ;;
ccf9f10c 305 "EV5.6 (21164PC)")
fe38e08b 306 UNAME_MACHINE=alphapca56 ;;
ccf9f10c 307 "EV5.7 (21164PC)")
fe38e08b 308 UNAME_MACHINE=alphapca57 ;;
ccf9f10c 309 "EV6 (21264)")
fe38e08b 310 UNAME_MACHINE=alphaev6 ;;
ccf9f10c 311 "EV6.7 (21264A)")
fe38e08b 312 UNAME_MACHINE=alphaev67 ;;
ccf9f10c 313 "EV6.8CB (21264C)")
fe38e08b 314 UNAME_MACHINE=alphaev68 ;;
ccf9f10c 315 "EV6.8AL (21264B)")
fe38e08b 316 UNAME_MACHINE=alphaev68 ;;
ccf9f10c 317 "EV6.8CX (21264D)")
fe38e08b 318 UNAME_MACHINE=alphaev68 ;;
ccf9f10c 319 "EV6.9A (21264/EV69A)")
fe38e08b 320 UNAME_MACHINE=alphaev69 ;;
ccf9f10c 321 "EV7 (21364)")
fe38e08b 322 UNAME_MACHINE=alphaev7 ;;
ccf9f10c 323 "EV7.9 (21364A)")
fe38e08b 324 UNAME_MACHINE=alphaev79 ;;
ccf9f10c 325 esac
fc4d0e82 326 # A Pn.n version is a patched version.
6599da04
JM
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.
29305f60 331 echo "$UNAME_MACHINE"-dec-osf"`echo "$UNAME_RELEASE" | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`"
41446fec
DE
332 # Reset EXIT trap before exiting to avoid spurious non-zero exit code.
333 exitcode=$?
334 trap '' 0
335 exit $exitcode ;;
6599da04 336 Amiga*:UNIX_System_V:4.0:*)
cb011248 337 echo m68k-unknown-sysv4
0063a823 338 exit ;;
1b409d25 339 *:[Aa]miga[Oo][Ss]:*:*)
29305f60 340 echo "$UNAME_MACHINE"-unknown-amigaos
0063a823 341 exit ;;
3cd87679 342 *:[Mm]orph[Oo][Ss]:*:*)
29305f60 343 echo "$UNAME_MACHINE"-unknown-morphos
0063a823 344 exit ;;
eeda916a
AO
345 *:OS/390:*:*)
346 echo i370-ibm-openedition
0063a823 347 exit ;;
9587be8a
KC
348 *:z/VM:*:*)
349 echo s390-ibm-zvmoe
0063a823 350 exit ;;
507ec745 351 *:OS400:*:*)
41446fec 352 echo powerpc-ibm-os400
0063a823 353 exit ;;
6599da04 354 arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*)
29305f60 355 echo arm-acorn-riscix"$UNAME_RELEASE"
0063a823 356 exit ;;
6c9c2cf2 357 arm*:riscos:*:*|arm*:RISCOS:*:*)
0063a823
KC
358 echo arm-unknown-riscos
359 exit ;;
ae3ca0a9 360 SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*)
6599da04 361 echo hppa1.1-hitachi-hiuxmpp
0063a823 362 exit ;;
b1345c72 363 Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*)
6599da04
JM
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
0063a823 370 exit ;;
b1345c72 371 NILE*:*:*:dcosx)
6599da04 372 echo pyramid-pyramid-svr4
0063a823 373 exit ;;
0bb41a37
L
374 DRS?6000:unix:4.0:6*)
375 echo sparc-icl-nx6
0063a823 376 exit ;;
9587be8a 377 DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*)
e2d83b8c 378 case `/usr/bin/uname -p` in
0063a823 379 sparc) echo sparc-icl-nx7; exit ;;
e2d83b8c 380 esac ;;
47bca6aa 381 s390x:SunOS:*:*)
29305f60 382 echo "$UNAME_MACHINE"-ibm-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`"
47bca6aa 383 exit ;;
1b409d25 384 sun4H:SunOS:5.*:*)
29305f60 385 echo sparc-hal-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
0063a823 386 exit ;;
6599da04 387 sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
5227609c
RO
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/[^.]*//'`"
0063a823 402 exit ;;
4960e3f0 403 i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*)
29305f60 404 echo i386-pc-auroraux"$UNAME_RELEASE"
4960e3f0 405 exit ;;
c3f07bd6 406 i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)
5227609c 407 set_cc_for_build
fe38e08b 408 SUN_ARCH=i386
e03dd84a
BE
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.
fe38e08b 412 if [ "$CC_FOR_BUILD" != no_compiler_found ]; then
18430d27 413 if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
fe38e08b 414 (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
e03dd84a
BE
415 grep IS_64BIT_ARCH >/dev/null
416 then
fe38e08b 417 SUN_ARCH=x86_64
e03dd84a
BE
418 fi
419 fi
29305f60 420 echo "$SUN_ARCH"-pc-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
0063a823 421 exit ;;
6599da04
JM
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.
29305f60 426 echo sparc-sun-solaris3"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
0063a823 427 exit ;;
6599da04
JM
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'.
29305f60 435 echo sparc-sun-sunos"`echo "$UNAME_RELEASE"|sed -e 's/-/_/'`"
0063a823 436 exit ;;
6599da04 437 sun3*:SunOS:*:*)
29305f60 438 echo m68k-sun-sunos"$UNAME_RELEASE"
0063a823 439 exit ;;
7818d6fc 440 sun*:*:4.2BSD:*)
4434687a 441 UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
29305f60 442 test "x$UNAME_RELEASE" = x && UNAME_RELEASE=3
7818d6fc
JW
443 case "`/bin/arch`" in
444 sun3)
29305f60 445 echo m68k-sun-sunos"$UNAME_RELEASE"
7818d6fc
JW
446 ;;
447 sun4)
29305f60 448 echo sparc-sun-sunos"$UNAME_RELEASE"
7818d6fc
JW
449 ;;
450 esac
0063a823 451 exit ;;
6599da04 452 aushp:SunOS:*:*)
29305f60 453 echo sparc-auspex-sunos"$UNAME_RELEASE"
0063a823 454 exit ;;
b1345c72
BE
455 # The situation for MiNT is a little confusing. The machine name
456 # can be virtually everything (everything which is not
ef0b4ef8 457 # "atarist" or "atariste" at least should have a processor
b1345c72
BE
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:*:*)
29305f60 464 echo m68k-atari-mint"$UNAME_RELEASE"
0063a823 465 exit ;;
b1345c72 466 atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
29305f60 467 echo m68k-atari-mint"$UNAME_RELEASE"
41446fec 468 exit ;;
b1345c72 469 *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
29305f60 470 echo m68k-atari-mint"$UNAME_RELEASE"
0063a823 471 exit ;;
b1345c72 472 milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
29305f60 473 echo m68k-milan-mint"$UNAME_RELEASE"
41446fec 474 exit ;;
b1345c72 475 hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
29305f60 476 echo m68k-hades-mint"$UNAME_RELEASE"
41446fec 477 exit ;;
b1345c72 478 *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
29305f60 479 echo m68k-unknown-mint"$UNAME_RELEASE"
41446fec 480 exit ;;
a7ca14fc 481 m68k:machten:*:*)
29305f60 482 echo m68k-apple-machten"$UNAME_RELEASE"
0063a823 483 exit ;;
6599da04 484 powerpc:machten:*:*)
29305f60 485 echo powerpc-apple-machten"$UNAME_RELEASE"
0063a823 486 exit ;;
6599da04
JM
487 RISC*:Mach:*:*)
488 echo mips-dec-mach_bsd4.3
0063a823 489 exit ;;
6599da04 490 RISC*:ULTRIX:*:*)
29305f60 491 echo mips-dec-ultrix"$UNAME_RELEASE"
0063a823 492 exit ;;
6599da04 493 VAX*:ULTRIX*:*:*)
29305f60 494 echo vax-dec-ultrix"$UNAME_RELEASE"
0063a823 495 exit ;;
b1345c72 496 2020:CLIX:*:* | 2430:CLIX:*:*)
29305f60 497 echo clipper-intergraph-clix"$UNAME_RELEASE"
0063a823 498 exit ;;
6599da04 499 mips:*:*:UMIPS | mips:*:*:RISCos)
5227609c 500 set_cc_for_build
29305f60 501 sed 's/^ //' << EOF > "$dummy.c"
b1345c72 502#ifdef __cplusplus
7a15eef5 503#include <stdio.h> /* for printf() prototype */
b1345c72
BE
504 int main (int argc, char *argv[]) {
505#else
506 int main (argc, argv) int argc; char *argv[]; {
507#endif
6599da04
JM
508 #if defined (host_mips) && defined (MIPSEB)
509 #if defined (SYSTYPE_SYSV)
ef7d7cf5 510 printf ("mips-mips-riscos%ssysv\\n", argv[1]); exit (0);
6599da04
JM
511 #endif
512 #if defined (SYSTYPE_SVR4)
ef7d7cf5 513 printf ("mips-mips-riscos%ssvr4\\n", argv[1]); exit (0);
6599da04
JM
514 #endif
515 #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD)
ef7d7cf5 516 printf ("mips-mips-riscos%sbsd\\n", argv[1]); exit (0);
6599da04
JM
517 #endif
518 #endif
519 exit (-1);
520 }
521EOF
29305f60
BE
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"` &&
0063a823 525 { echo "$SYSTEM_NAME"; exit; }
29305f60 526 echo mips-mips-riscos"$UNAME_RELEASE"
0063a823 527 exit ;;
ae3ca0a9
PE
528 Motorola:PowerMAX_OS:*:*)
529 echo powerpc-motorola-powermax
0063a823 530 exit ;;
7f0db92a
SS
531 Motorola:*:4.3:PL8-*)
532 echo powerpc-harris-powermax
0063a823 533 exit ;;
7f0db92a 534 Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*)
ac30211c 535 echo powerpc-harris-powermax
0063a823 536 exit ;;
6599da04
JM
537 Night_Hawk:Power_UNIX:*:*)
538 echo powerpc-harris-powerunix
0063a823 539 exit ;;
6599da04
JM
540 m88k:CX/UX:7*:*)
541 echo m88k-harris-cxux7
0063a823 542 exit ;;
6599da04
JM
543 m88k:*:4*:R4*)
544 echo m88k-motorola-sysv4
0063a823 545 exit ;;
6599da04
JM
546 m88k:*:3*:R3*)
547 echo m88k-motorola-sysv3
0063a823 548 exit ;;
6599da04 549 AViiON:dgux:*:*)
41446fec
DE
550 # DG/UX returns AViiON for all architectures
551 UNAME_PROCESSOR=`/usr/bin/uname -p`
29305f60 552 if [ "$UNAME_PROCESSOR" = mc88100 ] || [ "$UNAME_PROCESSOR" = mc88110 ]
eeda916a 553 then
29305f60
BE
554 if [ "$TARGET_BINARY_INTERFACE"x = m88kdguxelfx ] || \
555 [ "$TARGET_BINARY_INTERFACE"x = x ]
eeda916a 556 then
29305f60 557 echo m88k-dg-dgux"$UNAME_RELEASE"
eeda916a 558 else
29305f60 559 echo m88k-dg-dguxbcs"$UNAME_RELEASE"
eeda916a
AO
560 fi
561 else
29305f60 562 echo i586-dg-dgux"$UNAME_RELEASE"
6599da04 563 fi
41446fec 564 exit ;;
6599da04
JM
565 M88*:DolphinOS:*:*) # DolphinOS (SVR3)
566 echo m88k-dolphin-sysv3
0063a823 567 exit ;;
6599da04
JM
568 M88*:*:R3*:*)
569 # Delta 88k system running SVR3
570 echo m88k-motorola-sysv3
0063a823 571 exit ;;
6599da04
JM
572 XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3)
573 echo m88k-tektronix-sysv3
0063a823 574 exit ;;
6599da04
JM
575 Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD)
576 echo m68k-tektronix-bsd
0063a823 577 exit ;;
6599da04 578 *:IRIX*:*:*)
29305f60 579 echo mips-sgi-irix"`echo "$UNAME_RELEASE"|sed -e 's/-/_/g'`"
0063a823 580 exit ;;
6599da04 581 ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX.
0063a823
KC
582 echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id
583 exit ;; # Note that: echo "'`uname -s`'" gives 'AIX '
ae3ca0a9 584 i*86:AIX:*:*)
6599da04 585 echo i386-ibm-aix
0063a823 586 exit ;;
ae3ca0a9
PE
587 ia64:AIX:*:*)
588 if [ -x /usr/bin/oslevel ] ; then
589 IBM_REV=`/usr/bin/oslevel`
590 else
29305f60 591 IBM_REV="$UNAME_VERSION.$UNAME_RELEASE"
ae3ca0a9 592 fi
29305f60 593 echo "$UNAME_MACHINE"-ibm-aix"$IBM_REV"
0063a823 594 exit ;;
6599da04
JM
595 *:AIX:2:3)
596 if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then
5227609c 597 set_cc_for_build
29305f60 598 sed 's/^ //' << EOF > "$dummy.c"
6599da04
JM
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
29305f60 609 if $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"`
0063a823
KC
610 then
611 echo "$SYSTEM_NAME"
612 else
613 echo rs6000-ibm-aix3.2.5
614 fi
6599da04
JM
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
0063a823 620 exit ;;
41446fec 621 *:AIX:*:[4567])
4434687a 622 IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`
29305f60 623 if /usr/sbin/lsattr -El "$IBM_CPU_ID" | grep ' POWER' >/dev/null 2>&1; then
6599da04
JM
624 IBM_ARCH=rs6000
625 else
626 IBM_ARCH=powerpc
627 fi
e4ff7e6a
JBG
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/`
6599da04 631 else
29305f60 632 IBM_REV="$UNAME_VERSION.$UNAME_RELEASE"
6599da04 633 fi
29305f60 634 echo "$IBM_ARCH"-ibm-aix"$IBM_REV"
0063a823 635 exit ;;
6599da04
JM
636 *:AIX:*:*)
637 echo rs6000-ibm-aix
0063a823 638 exit ;;
ef7d7cf5 639 ibmrt:4.4BSD:*|romp-ibm:4.4BSD:*)
6599da04 640 echo romp-ibm-bsd4.4
0063a823 641 exit ;;
7a15eef5 642 ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and
29305f60 643 echo romp-ibm-bsd"$UNAME_RELEASE" # 4.3 with uname added to
0063a823 644 exit ;; # report: romp-ibm BSD 4.3
6599da04
JM
645 *:BOSX:*:*)
646 echo rs6000-bull-bosx
0063a823 647 exit ;;
6599da04
JM
648 DPX/2?00:B.O.S.:*:*)
649 echo m68k-bull-sysv3
0063a823 650 exit ;;
6599da04
JM
651 9000/[34]??:4.3bsd:1.*:*)
652 echo m68k-hp-bsd
0063a823 653 exit ;;
6599da04
JM
654 hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*)
655 echo m68k-hp-bsd4.4
0063a823 656 exit ;;
d1a09590 657 9000/[34678]??:HP-UX:*:*)
29305f60
BE
658 HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'`
659 case "$UNAME_MACHINE" in
ef7d7cf5
BE
660 9000/31?) HP_ARCH=m68000 ;;
661 9000/[34]??) HP_ARCH=m68k ;;
b1345c72 662 9000/[678][0-9][0-9])
dd3a88c9
HPN
663 if [ -x /usr/bin/getconf ]; then
664 sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null`
41446fec 665 sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null`
29305f60 666 case "$sc_cpu_version" in
fe38e08b
JS
667 523) HP_ARCH=hppa1.0 ;; # CPU_PA_RISC1_0
668 528) HP_ARCH=hppa1.1 ;; # CPU_PA_RISC1_1
41446fec 669 532) # CPU_PA_RISC2_0
29305f60 670 case "$sc_kernel_bits" in
fe38e08b
JS
671 32) HP_ARCH=hppa2.0n ;;
672 64) HP_ARCH=hppa2.0w ;;
673 '') HP_ARCH=hppa2.0 ;; # HP-UX 10.20
41446fec
DE
674 esac ;;
675 esac
dd3a88c9 676 fi
29305f60 677 if [ "$HP_ARCH" = "" ]; then
5227609c 678 set_cc_for_build
29305f60 679 sed 's/^ //' << EOF > "$dummy.c"
ef0b4ef8 680
41446fec
DE
681 #define _HPUX_SOURCE
682 #include <stdlib.h>
683 #include <unistd.h>
b1345c72 684
41446fec
DE
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);
b1345c72 691
41446fec
DE
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 }
d1a09590 711EOF
29305f60 712 (CCOPTS="" $CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null) && HP_ARCH=`"$dummy"`
ab17919f 713 test -z "$HP_ARCH" && HP_ARCH=hppa
dd3a88c9 714 fi ;;
6599da04 715 esac
29305f60 716 if [ "$HP_ARCH" = hppa2.0w ]
ab17919f 717 then
5227609c 718 set_cc_for_build
0063a823
KC
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
fe38e08b 729 if echo __LP64__ | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) |
e9d9afef 730 grep -q __LP64__
ab17919f 731 then
fe38e08b 732 HP_ARCH=hppa2.0w
ab17919f 733 else
fe38e08b 734 HP_ARCH=hppa64
ab17919f
SS
735 fi
736 fi
29305f60 737 echo "$HP_ARCH"-hp-hpux"$HPUX_REV"
0063a823 738 exit ;;
ae3ca0a9 739 ia64:HP-UX:*:*)
29305f60
BE
740 HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'`
741 echo ia64-hp-hpux"$HPUX_REV"
0063a823 742 exit ;;
6599da04 743 3050*:HI-UX:*:*)
5227609c 744 set_cc_for_build
29305f60 745 sed 's/^ //' << EOF > "$dummy.c"
6599da04
JM
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
29305f60 770 $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` &&
0063a823 771 { echo "$SYSTEM_NAME"; exit; }
6599da04 772 echo unknown-hitachi-hiuxwe2
0063a823 773 exit ;;
ef7d7cf5 774 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:*)
6599da04 775 echo hppa1.1-hp-bsd
0063a823 776 exit ;;
6599da04
JM
777 9000/8??:4.3bsd:*:*)
778 echo hppa1.0-hp-bsd
0063a823 779 exit ;;
f6084f99 780 *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*)
b1345c72 781 echo hppa1.0-hp-mpeix
0063a823 782 exit ;;
ef7d7cf5 783 hp7??:OSF1:*:* | hp8?[79]:OSF1:*:*)
6599da04 784 echo hppa1.1-hp-osf
0063a823 785 exit ;;
6599da04
JM
786 hp8??:OSF1:*:*)
787 echo hppa1.0-hp-osf
0063a823 788 exit ;;
ae3ca0a9 789 i*86:OSF1:*:*)
6599da04 790 if [ -x /usr/sbin/sysversion ] ; then
29305f60 791 echo "$UNAME_MACHINE"-unknown-osf1mk
6599da04 792 else
29305f60 793 echo "$UNAME_MACHINE"-unknown-osf1
6599da04 794 fi
0063a823 795 exit ;;
6599da04
JM
796 parisc*:Lites*:*:*)
797 echo hppa1.1-hp-lites
0063a823 798 exit ;;
6599da04
JM
799 C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)
800 echo c1-convex-bsd
41446fec 801 exit ;;
6599da04
JM
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
41446fec 807 exit ;;
6599da04
JM
808 C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*)
809 echo c34-convex-bsd
41446fec 810 exit ;;
6599da04
JM
811 C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*)
812 echo c38-convex-bsd
41446fec 813 exit ;;
6599da04
JM
814 C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*)
815 echo c4-convex-bsd
41446fec 816 exit ;;
6599da04 817 CRAY*Y-MP:*:*:*)
29305f60 818 echo ymp-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'
0063a823 819 exit ;;
6599da04 820 CRAY*[A-Z]90:*:*:*)
29305f60 821 echo "$UNAME_MACHINE"-cray-unicos"$UNAME_RELEASE" \
6599da04 822 | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \
f6084f99
ZW
823 -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \
824 -e 's/\.[^.]*$/.X/'
0063a823 825 exit ;;
6599da04 826 CRAY*TS:*:*:*)
29305f60 827 echo t90-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'
0063a823 828 exit ;;
ae3ca0a9 829 CRAY*T3E:*:*:*)
29305f60 830 echo alphaev5-cray-unicosmk"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'
0063a823 831 exit ;;
7a15eef5 832 CRAY*SV1:*:*:*)
29305f60 833 echo sv1-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'
0063a823 834 exit ;;
66e2aa7d 835 *:UNICOS/mp:*:*)
29305f60 836 echo craynv-cray-unicosmp"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'
0063a823 837 exit ;;
ae3ca0a9 838 F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*)
fe38e08b
JS
839 FUJITSU_PROC=`uname -m | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`
840 FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'`
29305f60 841 FUJITSU_REL=`echo "$UNAME_RELEASE" | sed -e 's/ /_/'`
41446fec
DE
842 echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
843 exit ;;
a7ca14fc 844 5000:UNIX_System_V:4.*:*)
fe38e08b 845 FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'`
29305f60 846 FUJITSU_REL=`echo "$UNAME_RELEASE" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'`
41446fec 847 echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
0063a823 848 exit ;;
ae3ca0a9 849 i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*)
29305f60 850 echo "$UNAME_MACHINE"-pc-bsdi"$UNAME_RELEASE"
0063a823 851 exit ;;
b1345c72 852 sparc*:BSD/OS:*:*)
29305f60 853 echo sparc-unknown-bsdi"$UNAME_RELEASE"
0063a823 854 exit ;;
b1345c72 855 *:BSD/OS:*:*)
29305f60 856 echo "$UNAME_MACHINE"-unknown-bsdi"$UNAME_RELEASE"
0063a823 857 exit ;;
5227609c
RO
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 ;;
26db814a 869 *:FreeBSD:*:*)
6c9c2cf2 870 UNAME_PROCESSOR=`/usr/bin/uname -p`
29305f60 871 case "$UNAME_PROCESSOR" in
8d1171cb 872 amd64)
a98cf819
GP
873 UNAME_PROCESSOR=x86_64 ;;
874 i386)
875 UNAME_PROCESSOR=i586 ;;
8d1171cb 876 esac
29305f60 877 echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`"
0063a823 878 exit ;;
6599da04 879 i*:CYGWIN*:*)
29305f60 880 echo "$UNAME_MACHINE"-pc-cygwin
0063a823 881 exit ;;
6c9c2cf2 882 *:MINGW64*:*)
29305f60 883 echo "$UNAME_MACHINE"-pc-mingw64
6c9c2cf2 884 exit ;;
a894d2c3 885 *:MINGW*:*)
29305f60 886 echo "$UNAME_MACHINE"-pc-mingw32
0063a823 887 exit ;;
a4ebe104 888 *:MSYS*:*)
29305f60 889 echo "$UNAME_MACHINE"-pc-msys
6c9c2cf2 890 exit ;;
05d52d78 891 i*:PW*:*)
29305f60 892 echo "$UNAME_MACHINE"-pc-pw32
0063a823 893 exit ;;
f6c56be6 894 *:Interix*:*)
29305f60 895 case "$UNAME_MACHINE" in
c3f07bd6 896 x86)
29305f60 897 echo i586-pc-interix"$UNAME_RELEASE"
a894d2c3 898 exit ;;
f6c56be6 899 authenticamd | genuineintel | EM64T)
29305f60 900 echo x86_64-unknown-interix"$UNAME_RELEASE"
a894d2c3 901 exit ;;
9cb8756f 902 IA64)
29305f60 903 echo ia64-unknown-interix"$UNAME_RELEASE"
9cb8756f 904 exit ;;
a894d2c3 905 esac ;;
926bb5ed 906 i*:UWIN*:*)
29305f60 907 echo "$UNAME_MACHINE"-pc-uwin
0063a823 908 exit ;;
b4623110 909 amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*)
5227609c 910 echo x86_64-pc-cygwin
0063a823 911 exit ;;
6599da04 912 prep*:SunOS:5.*:*)
29305f60 913 echo powerpcle-unknown-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
0063a823 914 exit ;;
6599da04 915 *:GNU:*:*)
26db814a 916 # the GNU system
29305f60 917 echo "`echo "$UNAME_MACHINE"|sed -e 's,[-/].*$,,'`-unknown-$LIBC`echo "$UNAME_RELEASE"|sed -e 's,/.*$,,'`"
0063a823 918 exit ;;
26db814a
BI
919 *:GNU/*:*:*)
920 # other systems with GNU libc and userland
29305f60 921 echo "$UNAME_MACHINE-unknown-`echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`-$LIBC"
0063a823 922 exit ;;
c234070e
SH
923 *:Minix:*:*)
924 echo "$UNAME_MACHINE"-unknown-minix
0063a823 925 exit ;;
6c9c2cf2 926 aarch64:Linux:*:*)
29305f60 927 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
6c9c2cf2
BE
928 exit ;;
929 aarch64_be:Linux:*:*)
930 UNAME_MACHINE=aarch64_be
29305f60 931 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
6c9c2cf2 932 exit ;;
d4c74acc
NC
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 ;;
41446fec 942 esac
d4c74acc 943 objdump --private-headers /bin/sh | grep -q ld.so.1
fe38e08b 944 if test "$?" = 0 ; then LIBC=gnulibc1 ; fi
29305f60 945 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
2a3e690a
JR
946 exit ;;
947 arc:Linux:*:* | arceb:Linux:*:*)
29305f60 948 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
d4c74acc 949 exit ;;
ae3ca0a9 950 arm*:Linux:*:*)
5227609c 951 set_cc_for_build
c3220d4c
BE
952 if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \
953 | grep -q __ARM_EABI__
954 then
29305f60 955 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
c3220d4c 956 else
a864a70b
NC
957 if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \
958 | grep -q __ARM_PCS_VFP
959 then
29305f60 960 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabi
a864a70b 961 else
29305f60 962 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabihf
a864a70b 963 fi
c3220d4c 964 fi
0063a823 965 exit ;;
f6a1687e 966 avr32*:Linux:*:*)
29305f60 967 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
f6a1687e 968 exit ;;
0bb41a37 969 cris:Linux:*:*)
29305f60 970 echo "$UNAME_MACHINE"-axis-linux-"$LIBC"
0063a823 971 exit ;;
fc4d0e82 972 crisv32:Linux:*:*)
29305f60 973 echo "$UNAME_MACHINE"-axis-linux-"$LIBC"
0063a823 974 exit ;;
d5e9bac5 975 e2k:Linux:*:*)
29305f60 976 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
d5e9bac5 977 exit ;;
85f59630 978 frv:Linux:*:*)
29305f60 979 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
6c9c2cf2
BE
980 exit ;;
981 hexagon:Linux:*:*)
29305f60 982 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
0063a823 983 exit ;;
d4c74acc 984 i*86:Linux:*:*)
29305f60 985 echo "$UNAME_MACHINE"-pc-linux-"$LIBC"
d4c74acc 986 exit ;;
ae3ca0a9 987 ia64:Linux:*:*)
29305f60 988 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
0063a823 989 exit ;;
cfe67e03 990 k1om:Linux:*:*)
29305f60 991 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
cfe67e03 992 exit ;;
fc4d0e82 993 m32r*:Linux:*:*)
29305f60 994 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
0063a823 995 exit ;;
ae3ca0a9 996 m68*:Linux:*:*)
29305f60 997 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
0063a823 998 exit ;;
47bca6aa 999 mips:Linux:*:* | mips64:Linux:*:*)
5227609c 1000 set_cc_for_build
29305f60 1001 sed 's/^ //' << EOF > "$dummy.c"
7f0db92a 1002 #undef CPU
47bca6aa
BE
1003 #undef ${UNAME_MACHINE}
1004 #undef ${UNAME_MACHINE}el
7f0db92a 1005 #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL)
47bca6aa 1006 CPU=${UNAME_MACHINE}el
7f0db92a
SS
1007 #else
1008 #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB)
47bca6aa 1009 CPU=${UNAME_MACHINE}
7f0db92a
SS
1010 #else
1011 CPU=
1012 #endif
1013 #endif
1014EOF
29305f60
BE
1015 eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU'`"
1016 test "x$CPU" != x && { echo "$CPU-unknown-linux-$LIBC"; exit; }
ae3ca0a9 1017 ;;
292edab3 1018 mips64el:Linux:*:*)
29305f60 1019 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
292edab3 1020 exit ;;
a4ebe104 1021 openrisc*:Linux:*:*)
29305f60 1022 echo or1k-unknown-linux-"$LIBC"
2a3e690a 1023 exit ;;
a4ebe104 1024 or32:Linux:*:* | or1k*:Linux:*:*)
29305f60 1025 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
b4623110 1026 exit ;;
e03dd84a 1027 padre:Linux:*:*)
29305f60 1028 echo sparc-unknown-linux-"$LIBC"
e03dd84a 1029 exit ;;
d4c74acc 1030 parisc64:Linux:*:* | hppa64:Linux:*:*)
29305f60 1031 echo hppa64-unknown-linux-"$LIBC"
d4c74acc 1032 exit ;;
ae3ca0a9
PE
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
29305f60
BE
1036 PA7*) echo hppa1.1-unknown-linux-"$LIBC" ;;
1037 PA8*) echo hppa2.0-unknown-linux-"$LIBC" ;;
1038 *) echo hppa-unknown-linux-"$LIBC" ;;
ae3ca0a9 1039 esac
0063a823 1040 exit ;;
d4c74acc 1041 ppc64:Linux:*:*)
29305f60 1042 echo powerpc64-unknown-linux-"$LIBC"
d4c74acc
NC
1043 exit ;;
1044 ppc:Linux:*:*)
29305f60 1045 echo powerpc-unknown-linux-"$LIBC"
2a3e690a
JR
1046 exit ;;
1047 ppc64le:Linux:*:*)
29305f60 1048 echo powerpc64le-unknown-linux-"$LIBC"
2a3e690a
JR
1049 exit ;;
1050 ppcle:Linux:*:*)
29305f60 1051 echo powerpcle-unknown-linux-"$LIBC"
0063a823 1052 exit ;;
292edab3 1053 riscv32:Linux:*:* | riscv64:Linux:*:*)
29305f60 1054 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
292edab3 1055 exit ;;
ae3ca0a9 1056 s390:Linux:*:* | s390x:Linux:*:*)
29305f60 1057 echo "$UNAME_MACHINE"-ibm-linux-"$LIBC"
0063a823 1058 exit ;;
ace08cb8 1059 sh64*:Linux:*:*)
29305f60 1060 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
ace08cb8 1061 exit ;;
ae3ca0a9 1062 sh*:Linux:*:*)
29305f60 1063 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
0063a823 1064 exit ;;
ae3ca0a9 1065 sparc:Linux:*:* | sparc64:Linux:*:*)
29305f60 1066 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
0063a823 1067 exit ;;
41446fec 1068 tile*:Linux:*:*)
29305f60 1069 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
41446fec 1070 exit ;;
8d1171cb 1071 vax:Linux:*:*)
29305f60 1072 echo "$UNAME_MACHINE"-dec-linux-"$LIBC"
8d1171cb 1073 exit ;;
ae3ca0a9 1074 x86_64:Linux:*:*)
29305f60 1075 echo "$UNAME_MACHINE"-pc-linux-"$LIBC"
0063a823 1076 exit ;;
c3220d4c 1077 xtensa*:Linux:*:*)
29305f60 1078 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
9b6f37a0 1079 exit ;;
ae3ca0a9 1080 i*86:DYNIX/ptx:4*:*)
f6084f99
ZW
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.
6599da04 1084 echo i386-sequent-sysv4
0063a823 1085 exit ;;
ae3ca0a9 1086 i*86:UNIX_SV:4.2MP:2.*)
41446fec
DE
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,
6599da04 1090 # I just have to hope. -- rms.
41446fec 1091 # Use sysv4.2uw... so that sysv4* matches it.
29305f60 1092 echo "$UNAME_MACHINE"-pc-sysv4.2uw"$UNAME_VERSION"
0063a823 1093 exit ;;
7f0db92a
SS
1094 i*86:OS/2:*:*)
1095 # If we were able to find `uname', then EMX Unix compatibility
1096 # is probably installed.
29305f60 1097 echo "$UNAME_MACHINE"-pc-os2-emx
0063a823 1098 exit ;;
7f0db92a 1099 i*86:XTS-300:*:STOP)
29305f60 1100 echo "$UNAME_MACHINE"-unknown-stop
0063a823 1101 exit ;;
7f0db92a 1102 i*86:atheos:*:*)
29305f60 1103 echo "$UNAME_MACHINE"-unknown-atheos
0063a823
KC
1104 exit ;;
1105 i*86:syllable:*:*)
29305f60 1106 echo "$UNAME_MACHINE"-pc-syllable
0063a823 1107 exit ;;
e9d9afef 1108 i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*)
29305f60 1109 echo i386-unknown-lynxos"$UNAME_RELEASE"
0063a823 1110 exit ;;
7f0db92a 1111 i*86:*DOS:*:*)
29305f60 1112 echo "$UNAME_MACHINE"-pc-msdosdjgpp
0063a823 1113 exit ;;
ef7d7cf5 1114 i*86:*:4.*:*)
29305f60 1115 UNAME_REL=`echo "$UNAME_RELEASE" | sed 's/\/MP$//'`
6599da04 1116 if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
29305f60 1117 echo "$UNAME_MACHINE"-univel-sysv"$UNAME_REL"
6599da04 1118 else
29305f60 1119 echo "$UNAME_MACHINE"-pc-sysv"$UNAME_REL"
6599da04 1120 fi
0063a823
KC
1121 exit ;;
1122 i*86:*:5:[678]*)
41446fec 1123 # UnixWare 7.x, OpenUNIX and OpenServer 6.
f6084f99
ZW
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
29305f60 1129 echo "$UNAME_MACHINE-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}{$UNAME_VERSION}"
0063a823 1130 exit ;;
ae3ca0a9 1131 i*86:*:3.2:*)
6599da04
JM
1132 if test -f /usr/options/cb.name; then
1133 UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name`
29305f60 1134 echo "$UNAME_MACHINE"-pc-isc"$UNAME_REL"
6599da04 1135 elif /bin/uname -X 2>/dev/null >/dev/null ; then
e2d83b8c
CD
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) \
6599da04 1139 && UNAME_MACHINE=i586
e2d83b8c 1140 (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \
276d5ee0 1141 && UNAME_MACHINE=i686
e2d83b8c 1142 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \
4746e092 1143 && UNAME_MACHINE=i686
29305f60 1144 echo "$UNAME_MACHINE"-pc-sco"$UNAME_REL"
6599da04 1145 else
29305f60 1146 echo "$UNAME_MACHINE"-pc-sysv32
6599da04 1147 fi
0063a823 1148 exit ;;
6599da04 1149 pc:*:*:*)
7a15eef5 1150 # Left here for compatibility:
41446fec
DE
1151 # uname -m prints for DJGPP always 'pc', but it prints nothing about
1152 # the processor, so we play safe by assuming i586.
1cee3429 1153 # Note: whatever this is, it MUST be the same as what config.sub
cfe67e03 1154 # prints for the "djgpp" host, or else GDB configure will decide that
1cee3429
PB
1155 # this is a cross-build.
1156 echo i586-pc-msdosdjgpp
41446fec 1157 exit ;;
6599da04
JM
1158 Intel:Mach:3*:*)
1159 echo i386-pc-mach3
0063a823 1160 exit ;;
6599da04
JM
1161 paragon:*:*:*)
1162 echo i860-intel-osf1
0063a823 1163 exit ;;
6599da04
JM
1164 i860:*:4.*:*) # i860-SVR4
1165 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then
29305f60 1166 echo i860-stardent-sysv"$UNAME_RELEASE" # Stardent Vistra i860-SVR4
6599da04 1167 else # Add other i860-SVR4 vendors below as they are discovered.
29305f60 1168 echo i860-unknown-sysv"$UNAME_RELEASE" # Unknown i860-SVR4
6599da04 1169 fi
0063a823 1170 exit ;;
6599da04
JM
1171 mini*:CTIX:SYS*5:*)
1172 # "miniframe"
1173 echo m68010-convergent-sysv
0063a823 1174 exit ;;
7f0db92a
SS
1175 mc68k:UNIX:SYSTEM5:3.51m)
1176 echo m68k-convergent-sysv
0063a823 1177 exit ;;
7f0db92a
SS
1178 M680?0:D-NIX:5.3:*)
1179 echo m68k-diab-dnix
0063a823 1180 exit ;;
fc4d0e82 1181 M68*:*:R3V[5678]*:*)
0063a823 1182 test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;;
fc4d0e82 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)
6599da04
JM
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 \
29305f60 1188 && { echo i486-ncr-sysv4.3"$OS_REL"; exit; }
6599da04 1189 /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
29305f60 1190 && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;;
6599da04 1191 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
41446fec
DE
1192 /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
1193 && { echo i486-ncr-sysv4; exit; } ;;
070bdbd9
BE
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 \
29305f60 1199 && { echo i486-ncr-sysv4.3"$OS_REL"; exit; }
070bdbd9 1200 /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
29305f60 1201 && { echo i586-ncr-sysv4.3"$OS_REL"; exit; }
070bdbd9 1202 /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \
29305f60 1203 && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;;
ae3ca0a9 1204 m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*)
29305f60 1205 echo m68k-unknown-lynxos"$UNAME_RELEASE"
0063a823 1206 exit ;;
6599da04
JM
1207 mc68030:UNIX_System_V:4.*:*)
1208 echo m68k-atari-sysv4
0063a823 1209 exit ;;
6599da04 1210 TSUNAMI:LynxOS:2.*:*)
29305f60 1211 echo sparc-unknown-lynxos"$UNAME_RELEASE"
0063a823 1212 exit ;;
ae3ca0a9 1213 rs6000:LynxOS:2.*:*)
29305f60 1214 echo rs6000-unknown-lynxos"$UNAME_RELEASE"
0063a823 1215 exit ;;
e9d9afef 1216 PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*)
29305f60 1217 echo powerpc-unknown-lynxos"$UNAME_RELEASE"
0063a823 1218 exit ;;
6599da04 1219 SM[BE]S:UNIX_SV:*:*)
29305f60 1220 echo mips-dde-sysv"$UNAME_RELEASE"
0063a823 1221 exit ;;
b1345c72
BE
1222 RM*:ReliantUNIX-*:*:*)
1223 echo mips-sni-sysv4
0063a823 1224 exit ;;
6599da04
JM
1225 RM*:SINIX-*:*:*)
1226 echo mips-sni-sysv4
0063a823 1227 exit ;;
6599da04
JM
1228 *:SINIX-*:*:*)
1229 if uname -p 2>/dev/null >/dev/null ; then
1230 UNAME_MACHINE=`(uname -p) 2>/dev/null`
29305f60 1231 echo "$UNAME_MACHINE"-sni-sysv4
6599da04
JM
1232 else
1233 echo ns32k-sni-sysv
1234 fi
0063a823 1235 exit ;;
41446fec
DE
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 ;;
6599da04
JM
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
0063a823 1244 exit ;;
6599da04
JM
1245 *:*:*:FTX*)
1246 # From seanf@swdc.stratus.com.
1247 echo i860-stratus-sysv4
0063a823
KC
1248 exit ;;
1249 i*86:VOS:*:*)
1250 # From Paul.Green@stratus.com.
29305f60 1251 echo "$UNAME_MACHINE"-stratus-vos
0063a823 1252 exit ;;
f6084f99
ZW
1253 *:VOS:*:*)
1254 # From Paul.Green@stratus.com.
1255 echo hppa1.1-stratus-vos
0063a823 1256 exit ;;
6599da04 1257 mc68*:A/UX:*:*)
29305f60 1258 echo m68k-apple-aux"$UNAME_RELEASE"
0063a823 1259 exit ;;
05d52d78 1260 news*:NEWS-OS:6*:*)
6599da04 1261 echo mips-sony-newsos6
0063a823 1262 exit ;;
51ccbd8d 1263 R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*)
6599da04 1264 if [ -d /usr/nec ]; then
29305f60 1265 echo mips-nec-sysv"$UNAME_RELEASE"
6599da04 1266 else
29305f60 1267 echo mips-unknown-sysv"$UNAME_RELEASE"
6599da04 1268 fi
41446fec 1269 exit ;;
baf55877
FF
1270 BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only.
1271 echo powerpc-be-beos
0063a823 1272 exit ;;
baf55877
FF
1273 BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only.
1274 echo powerpc-apple-beos
0063a823 1275 exit ;;
1b409d25
ILT
1276 BePC:BeOS:*:*) # BeOS running on Intel PC compatible.
1277 echo i586-pc-beos
0063a823 1278 exit ;;
954910ef
BE
1279 BePC:Haiku:*:*) # Haiku running on Intel PC compatible.
1280 echo i586-pc-haiku
1281 exit ;;
6c9c2cf2
BE
1282 x86_64:Haiku:*:*)
1283 echo x86_64-unknown-haiku
1284 exit ;;
b1345c72 1285 SX-4:SUPER-UX:*:*)
29305f60 1286 echo sx4-nec-superux"$UNAME_RELEASE"
0063a823 1287 exit ;;
b1345c72 1288 SX-5:SUPER-UX:*:*)
29305f60 1289 echo sx5-nec-superux"$UNAME_RELEASE"
0063a823 1290 exit ;;
5ce6f47b 1291 SX-6:SUPER-UX:*:*)
29305f60 1292 echo sx6-nec-superux"$UNAME_RELEASE"
0063a823 1293 exit ;;
9b6f37a0 1294 SX-7:SUPER-UX:*:*)
29305f60 1295 echo sx7-nec-superux"$UNAME_RELEASE"
9b6f37a0
BE
1296 exit ;;
1297 SX-8:SUPER-UX:*:*)
29305f60 1298 echo sx8-nec-superux"$UNAME_RELEASE"
9b6f37a0 1299 exit ;;
a894d2c3 1300 SX-8R:SUPER-UX:*:*)
29305f60 1301 echo sx8r-nec-superux"$UNAME_RELEASE"
a894d2c3 1302 exit ;;
fe38e08b 1303 SX-ACE:SUPER-UX:*:*)
29305f60 1304 echo sxace-nec-superux"$UNAME_RELEASE"
fe38e08b 1305 exit ;;
b1345c72 1306 Power*:Rhapsody:*:*)
29305f60 1307 echo powerpc-apple-rhapsody"$UNAME_RELEASE"
0063a823 1308 exit ;;
b1345c72 1309 *:Rhapsody:*:*)
29305f60 1310 echo "$UNAME_MACHINE"-apple-rhapsody"$UNAME_RELEASE"
0063a823 1311 exit ;;
ef0b4ef8 1312 *:Darwin:*:*)
fc4d0e82 1313 UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown
5227609c 1314 set_cc_for_build
2a3e690a
JR
1315 if test "$UNAME_PROCESSOR" = unknown ; then
1316 UNAME_PROCESSOR=powerpc
1317 fi
29305f60 1318 if test "`echo "$UNAME_RELEASE" | sed -e 's/\..*//'`" -le 10 ; then
fe38e08b 1319 if [ "$CC_FOR_BUILD" != no_compiler_found ]; then
a4ebe104 1320 if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \
ef7d7cf5
BE
1321 (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
1322 grep IS_64BIT_ARCH >/dev/null
a4ebe104
RS
1323 then
1324 case $UNAME_PROCESSOR in
1325 i386) UNAME_PROCESSOR=x86_64 ;;
1326 powerpc) UNAME_PROCESSOR=powerpc64 ;;
1327 esac
1328 fi
ef7d7cf5
BE
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
2a3e690a 1336 fi
a4ebe104
RS
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
2a3e690a 1345 fi
29305f60 1346 echo "$UNAME_PROCESSOR"-apple-darwin"$UNAME_RELEASE"
0063a823 1347 exit ;;
ef0b4ef8 1348 *:procnto*:*:* | *:QNX:[0123456789]*:*)
4434687a 1349 UNAME_PROCESSOR=`uname -p`
fe38e08b 1350 if test "$UNAME_PROCESSOR" = x86; then
4434687a 1351 UNAME_PROCESSOR=i386
ef0b4ef8
PT
1352 UNAME_MACHINE=pc
1353 fi
29305f60 1354 echo "$UNAME_PROCESSOR"-"$UNAME_MACHINE"-nto-qnx"$UNAME_RELEASE"
0063a823 1355 exit ;;
eeda916a 1356 *:QNX:*:4*)
ef0b4ef8 1357 echo i386-pc-qnx
0063a823 1358 exit ;;
ef7d7cf5 1359 NEO-*:NONSTOP_KERNEL:*:*)
29305f60 1360 echo neo-tandem-nsk"$UNAME_RELEASE"
41446fec 1361 exit ;;
6c9c2cf2 1362 NSE-*:NONSTOP_KERNEL:*:*)
29305f60 1363 echo nse-tandem-nsk"$UNAME_RELEASE"
0063a823 1364 exit ;;
ef7d7cf5 1365 NSR-*:NONSTOP_KERNEL:*:*)
29305f60
BE
1366 echo nsr-tandem-nsk"$UNAME_RELEASE"
1367 exit ;;
1368 NSV-*:NONSTOP_KERNEL:*:*)
1369 echo nsv-tandem-nsk"$UNAME_RELEASE"
0063a823 1370 exit ;;
ef7d7cf5 1371 NSX-*:NONSTOP_KERNEL:*:*)
29305f60 1372 echo nsx-tandem-nsk"$UNAME_RELEASE"
a98cf819 1373 exit ;;
ae3ca0a9
PE
1374 *:NonStop-UX:*:*)
1375 echo mips-compaq-nonstopux
0063a823 1376 exit ;;
ef0b4ef8
PT
1377 BS2000:POSIX*:*:*)
1378 echo bs2000-siemens-sysv
0063a823 1379 exit ;;
ef0b4ef8 1380 DS/*:UNIX_System_V:*:*)
29305f60 1381 echo "$UNAME_MACHINE"-"$UNAME_SYSTEM"-"$UNAME_RELEASE"
0063a823 1382 exit ;;
cb011248
FS
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.
5227609c 1387 # shellcheck disable=SC2154
fe38e08b 1388 if test "$cputype" = 386; then
cb011248
FS
1389 UNAME_MACHINE=i386
1390 else
1391 UNAME_MACHINE="$cputype"
1392 fi
29305f60 1393 echo "$UNAME_MACHINE"-unknown-plan9
0063a823 1394 exit ;;
ae3ca0a9
PE
1395 *:TOPS-10:*:*)
1396 echo pdp10-unknown-tops10
0063a823 1397 exit ;;
ae3ca0a9
PE
1398 *:TENEX:*:*)
1399 echo pdp10-unknown-tenex
0063a823 1400 exit ;;
ae3ca0a9
PE
1401 KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*)
1402 echo pdp10-dec-tops20
0063a823 1403 exit ;;
ae3ca0a9
PE
1404 XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*)
1405 echo pdp10-xkl-tops20
0063a823 1406 exit ;;
ae3ca0a9
PE
1407 *:TOPS-20:*:*)
1408 echo pdp10-unknown-tops20
0063a823 1409 exit ;;
ae3ca0a9
PE
1410 *:ITS:*:*)
1411 echo pdp10-unknown-its
0063a823 1412 exit ;;
26db814a 1413 SEI:*:*:SEIUX)
29305f60 1414 echo mips-sei-seiux"$UNAME_RELEASE"
0063a823 1415 exit ;;
a7ca14fc 1416 *:DragonFly:*:*)
29305f60 1417 echo "$UNAME_MACHINE"-unknown-dragonfly"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`"
0063a823 1418 exit ;;
fc4d0e82 1419 *:*VMS:*:*)
41446fec 1420 UNAME_MACHINE=`(uname -p) 2>/dev/null`
29305f60 1421 case "$UNAME_MACHINE" in
0063a823
KC
1422 A*) echo alpha-dec-vms ; exit ;;
1423 I*) echo ia64-dec-vms ; exit ;;
1424 V*) echo vax-dec-vms ; exit ;;
9587be8a
KC
1425 esac ;;
1426 *:XENIX:*:SysV)
1427 echo i386-pc-xenix
0063a823
KC
1428 exit ;;
1429 i*86:skyos:*:*)
29305f60 1430 echo "$UNAME_MACHINE"-pc-skyos"`echo "$UNAME_RELEASE" | sed -e 's/ .*$//'`"
0063a823 1431 exit ;;
8d1171cb 1432 i*86:rdos:*:*)
29305f60 1433 echo "$UNAME_MACHINE"-pc-rdos
8d1171cb 1434 exit ;;
070bdbd9 1435 i*86:AROS:*:*)
29305f60 1436 echo "$UNAME_MACHINE"-pc-aros
070bdbd9 1437 exit ;;
6c9c2cf2 1438 x86_64:VMkernel:*:*)
29305f60 1439 echo "$UNAME_MACHINE"-unknown-esx
6c9c2cf2 1440 exit ;;
cfe67e03
BE
1441 amd64:Isilon\ OneFS:*:*)
1442 echo x86_64-unknown-onefs
1443 exit ;;
5227609c
RO
1444 *:Unleashed:*:*)
1445 echo "$UNAME_MACHINE"-unknown-unleashed"$UNAME_RELEASE"
1446 exit ;;
6599da04
JM
1447esac
1448
ef7d7cf5
BE
1449echo "$0: unable to guess system type" >&2
1450
29305f60 1451case "$UNAME_MACHINE:$UNAME_SYSTEM" in
ef7d7cf5
BE
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
ef0b4ef8 1462cat >&2 <<EOF
ef0b4ef8 1463
292edab3 1464This script (version $timestamp), has failed to recognize the
ef7d7cf5
BE
1465operating system you are using. If your script is old, overwrite *all*
1466copies of config.guess and config.sub with the latest versions from:
ef0b4ef8 1467
ef7d7cf5 1468 https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
0063a823 1469and
ef7d7cf5 1470 https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub
ef0b4ef8 1471
292edab3
BE
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.
ef0b4ef8 1475
ae3ca0a9 1476config.guess timestamp = $timestamp
ef0b4ef8
PT
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
29305f60
BE
1493UNAME_MACHINE = "$UNAME_MACHINE"
1494UNAME_RELEASE = "$UNAME_RELEASE"
1495UNAME_SYSTEM = "$UNAME_SYSTEM"
1496UNAME_VERSION = "$UNAME_VERSION"
ef0b4ef8 1497EOF
6599da04
JM
1498
1499exit 1
ef0b4ef8
PT
1500
1501# Local variables:
29305f60 1502# eval: (add-hook 'before-save-hook 'time-stamp)
ae3ca0a9 1503# time-stamp-start: "timestamp='"
ef0b4ef8
PT
1504# time-stamp-format: "%:y-%02m-%02d"
1505# time-stamp-end: "'"
1506# End: