mirror of
git://git.savannah.gnu.org/config.git
synced 2025-05-30 11:06:36 +12:00
2000-10-12 Ben Elliston <bje@redhat.com>
* config.guess: Detect GNU/Linux on HP PA-RISC systems. From David Huggins-Daines <dhd@linuxcare.com>.
This commit is contained in:
parent
f575236a68
commit
c67509912b
@ -1,3 +1,8 @@
|
|||||||
|
2000-10-12 Ben Elliston <bje@redhat.com>
|
||||||
|
|
||||||
|
* config.guess: Detect GNU/Linux on HP PA-RISC systems.
|
||||||
|
From David Huggins-Daines <dhd@linuxcare.com>.
|
||||||
|
|
||||||
2000-10-09 Ben Elliston <bje@redhat.com>
|
2000-10-09 Ben Elliston <bje@redhat.com>
|
||||||
|
|
||||||
* config.sub: Typo fix for sh{3,4} case.
|
* config.sub: Typo fix for sh{3,4} case.
|
||||||
|
16
config.guess
vendored
16
config.guess
vendored
@ -3,7 +3,7 @@
|
|||||||
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
|
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
|
||||||
# Free Software Foundation, Inc.
|
# Free Software Foundation, Inc.
|
||||||
|
|
||||||
version='2000-10-07'
|
version='2000-10-12'
|
||||||
|
|
||||||
# This file is free software; you can redistribute it and/or modify it
|
# 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
|
# under the terms of the GNU General Public License as published by
|
||||||
@ -859,6 +859,20 @@ EOF
|
|||||||
echo s390-ibm-linux && exit 0
|
echo s390-ibm-linux && exit 0
|
||||||
elif test "${UNAME_MACHINE}" = "x86_64"; then
|
elif test "${UNAME_MACHINE}" = "x86_64"; then
|
||||||
echo x86_64-unknown-linux-gnu && exit 0
|
echo x86_64-unknown-linux-gnu && exit 0
|
||||||
|
elif test "${UNAME_MACHINE}" = "parisc" -o "${UNAME_MACHINE}" = "hppa"; then
|
||||||
|
# Look for CPU level
|
||||||
|
case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in
|
||||||
|
PA7*)
|
||||||
|
echo hppa1.1-unknown-linux-gnu
|
||||||
|
;;
|
||||||
|
PA8*)
|
||||||
|
echo hppa2.0-unknown-linux-gnu
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo hppa-unknown-linux-gnu
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
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.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user