diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:55:48 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:55:48 +0000 |
commit | 08e31d24335c2c9caa2f38f1efd3494997eebcd5 (patch) | |
tree | 8ec3a334db889c2cc530497a9d38c71546206b5f /buildlib | |
parent | 4509574a4ebc577706d2feaa8628c95c80f6e085 (diff) |
Added config.guess string for ia64; almost compiles nat...
Author: tausq
Date: 2000-04-08 20:08:29 GMT
Added config.guess string for ia64; almost compiles natively, just waiting for
g++ folks to fix a stupid parsing bug
Diffstat (limited to 'buildlib')
-rwxr-xr-x | buildlib/config.guess | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/buildlib/config.guess b/buildlib/config.guess index e9e44559f..106946c04 100755 --- a/buildlib/config.guess +++ b/buildlib/config.guess @@ -408,6 +408,8 @@ EOF ld_help_string=`ld --help 2>&1` if echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: elf_i.86"; then echo "${UNAME_MACHINE}-pc-linux-gnu" ; exit 0 + if echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: elf64_ia64"; then + echo "${UNAME_MACHINE}-pc-linux-gnu" ; exit 0 elif echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: i.86linux"; then echo "${UNAME_MACHINE}-pc-linux-gnuaout" ; exit 0 elif echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: i.86coff"; then |