diff options
author | Alan Modra <modra@gmail.com> | 2001-01-30 02:17:40 +0000 |
---|---|---|
committer | Alan Modra <modra@gmail.com> | 2001-01-30 02:17:40 +0000 |
commit | f1f21b9ea2ff10bd20f2aed2d81de2585a14781f (patch) | |
tree | 6a7b5f612b7fe1d365e0d99db6e7beada33bfb05 /config.guess | |
parent | 747e88d3f6c0a4007dd32b315700246d21e21ecb (diff) | |
download | newlib-f1f21b9ea2ff10bd20f2aed2d81de2585a14781f.zip newlib-f1f21b9ea2ff10bd20f2aed2d81de2585a14781f.tar.gz newlib-f1f21b9ea2ff10bd20f2aed2d81de2585a14781f.tar.bz2 |
Handle hppa64-linux systems.
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config.guess b/config.guess index 4758b11..ffb758f 100755 --- a/config.guess +++ b/config.guess @@ -929,6 +929,8 @@ EOF echo s390-ibm-linux && exit 0 elif test "${UNAME_MACHINE}" = "x86_64"; then echo x86_64-unknown-linux-gnu && exit 0 + elif test "${UNAME_MACHINE}" = "parisc64" -o "${UNAME_MACHINE}" = "hppa64"; then + echo hppa64-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 |