2001-07-19 Ben Elliston <bje@redhat.com>

* config.guess: Detect Linux on the PPC64 architecture.
This commit is contained in:
Ben Elliston 2001-07-19 02:39:15 +00:00
parent 75a07afb1f
commit a7b9376a25
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2001-07-19 Ben Elliston <bje@redhat.com>
* config.guess: Detect Linux on the PPC64 architecture.
2001-07-12 Keith Thompson <kst@sdsc.edu>
* config.guess: Strip trailing sub-version number from

5
config.guess vendored
View File

@ -3,7 +3,7 @@
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
# Free Software Foundation, Inc.
timestamp='2001-07-12'
timestamp='2001-07-19'
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
@ -778,6 +778,9 @@ EOF
ppc:Linux:*:*)
echo powerpc-unknown-linux-gnu
exit 0 ;;
ppc64:Linux:*:*)
echo powerpc64-unknown-linux-gnu
exit 0 ;;
alpha:Linux:*:*)
case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
EV5) UNAME_MACHINE=alphaev5 ;;