2000-02-15 Ben Elliston <bje@redhat.com>

* config.guess: Detect GNU/Linux on IBM S/390 machines.
	* config.sub: Handle s390-*. From Adam J. Thornton
	<adam@phoenix.princeton.edu>.
This commit is contained in:
Ben Elliston 2000-02-15 10:22:49 +00:00
parent 149375f88d
commit 4d79fdecdd
3 changed files with 7 additions and 1 deletions

View File

@ -1,5 +1,9 @@
2000-02-15 Ben Elliston <bje@redhat.com> 2000-02-15 Ben Elliston <bje@redhat.com>
* config.guess: Detect GNU/Linux on IBM S/390 machines.
* config.sub: Handle s390-*. From Adam J. Thornton
<adam@phoenix.princeton.edu>.
* config.guess: Detect MacOS X on PowerPC and other machines. * config.guess: Detect MacOS X on PowerPC and other machines.
From Stephen G. Johnson <stephenj@gil-galad.mit.edu>. From Stephen G. Johnson <stephenj@gil-galad.mit.edu>.

2
config.guess vendored
View File

@ -772,6 +772,8 @@ EOF
EOF EOF
$CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null && ./$dummy "${UNAME_MACHINE}" && rm $dummy.c $dummy && exit 0 $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null && ./$dummy "${UNAME_MACHINE}" && rm $dummy.c $dummy && exit 0
rm -f $dummy.c $dummy rm -f $dummy.c $dummy
elif test "${UNAME_MACHINE}" = "s390"; then
echo s390-ibm-linux && exit 0
else else
# Either a pre-BFD a.out linker (linux-gnuoldld) # Either a pre-BFD a.out linker (linux-gnuoldld)
# or one that does not give us useful --help. # or one that does not give us useful --help.

2
config.sub vendored
View File

@ -215,7 +215,7 @@ case $basic_machine in
| mips64el-* | mips64orion-* | mips64orionel-* \ | mips64el-* | mips64orion-* | mips64orionel-* \
| mips64vr4100-* | mips64vr4100el-* | mips64vr4300-* | mips64vr4300el-* \ | mips64vr4100-* | mips64vr4100el-* | mips64vr4300-* | mips64vr4300el-* \
| mipstx39-* | mipstx39el-* | mcore-* \ | mipstx39-* | mipstx39el-* | mcore-* \
| f301-* | armv*-* | sv1-* | t3e-* \ | f301-* | armv*-* | s390-* | sv1-* | t3e-* \
| m88110-* | m680[01234]0-* | m683?2-* | m68360-* | z8k-* | d10v-* \ | m88110-* | m680[01234]0-* | m683?2-* | m68360-* | z8k-* | d10v-* \
| thumb-* | v850-* | d30v-* | tic30-* | c30-* | fr30-* ) | thumb-* | v850-* | d30v-* | tic30-* | c30-* | fr30-* )
;; ;;