diff options
author | Nick Clifton <nickc@redhat.com> | 2003-08-21 14:00:06 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2003-08-21 14:00:06 +0000 |
commit | 6c21aa7634555aae9d4df64b073146bef5ae0734 (patch) | |
tree | be7d57e2f536fceb2d44392cc8aee57ca6d377e0 /bfd/elf64-hppa.c | |
parent | 3673a93e66c4d3c6b5ea3d31062a0f8d2388bd1e (diff) | |
download | gdb-6c21aa7634555aae9d4df64b073146bef5ae0734.zip gdb-6c21aa7634555aae9d4df64b073146bef5ae0734.tar.gz gdb-6c21aa7634555aae9d4df64b073146bef5ae0734.tar.bz2 |
For elf32-hppa-linux, objects can have OSABI=Linux or OSABI=SysV; check for
both.
Diffstat (limited to 'bfd/elf64-hppa.c')
-rw-r--r-- | bfd/elf64-hppa.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bfd/elf64-hppa.c b/bfd/elf64-hppa.c index 9523862..88403f5 100644 --- a/bfd/elf64-hppa.c +++ b/bfd/elf64-hppa.c @@ -380,7 +380,10 @@ elf64_hppa_object_p (abfd) i_ehdrp = elf_elfheader (abfd); if (strcmp (bfd_get_target (abfd), "elf64-hppa-linux") == 0) { - if (i_ehdrp->e_ident[EI_OSABI] != ELFOSABI_LINUX) + /* GCC on hppa-linux produces binaries with OSABI=Linux, + but the kernel produces corefiles with OSABI=SysV. */ + if (i_ehdrp->e_ident[EI_OSABI] != ELFOSABI_LINUX && + i_ehdrp->e_ident[EI_OSABI] != ELFOSABI_NONE) /* aka SYSV */ return FALSE; } else |