comparison config.guess @ 1733:d529a52b2f7c coverity coverity

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