diff options
author | Alan Modra <amodra@bigpond.net.au> | 2001-01-30 02:17:40 +0000 |
---|---|---|
committer | Alan Modra <amodra@bigpond.net.au> | 2001-01-30 02:17:40 +0000 |
commit | 0e0fc19112ea68bb4745322caec2e379319a7b75 (patch) | |
tree | caf3b2085a89d8dfd29a6821fa7a93a882e3fd8b /config.guess | |
parent | 8039e5d60cd9bdecc897705a3af3160ad1b5eeef (diff) | |
download | gdb-0e0fc19112ea68bb4745322caec2e379319a7b75.tar.gz |
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 4758b11fb81..ffb758fec97 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 |