All of lore.kernel.org
 help / color / mirror / Atom feed
* [parisc-linux] Why do we relax e_ident[EI_OSABI] in gdb?
@ 2002-12-27  2:31 Carlos O'Donell
  2002-12-27  5:49 ` Grant Grundler
  2002-12-28  0:34 ` Randolph Chung
  0 siblings, 2 replies; 4+ messages in thread
From: Carlos O'Donell @ 2002-12-27  2:31 UTC (permalink / raw)
  To: parisc-linux

parisc-linux,

Anyone have some ideas why we have this patch in gdb, and thus relax the 
EI_OSABI check?

--- gdb-5.2.cvs20020401/bfd/elf64-hppa.c~	Sun Mar 31 19:09:41 2002
+++ gdb-5.2.cvs20020401/bfd/elf64-hppa.c	Sat Apr 20 09:35:54 2002
@@ -372,7 +372,8 @@
   i_ehdrp = elf_elfheader (abfd);
   if (strcmp (bfd_get_target (abfd), "elf64-hppa-linux") == 0)
     {
-      if (i_ehdrp->e_ident[EI_OSABI] != ELFOSABI_LINUX)
+      if (i_ehdrp->e_ident[EI_OSABI] != ELFOSABI_LINUX &&
+          i_ehdrp->e_ident[EI_OSABI] != ELFOSABI_NONE)
 	return false;
     }
   else
--- gdb-5.2.cvs20020401/bfd/elf32-hppa.c~	Sun Mar 31 19:09:41 2002
+++ gdb-5.2.cvs20020401/bfd/elf32-hppa.c	Sat Apr 20 09:35:54 2002
@@ -1038,7 +1038,8 @@
   i_ehdrp = elf_elfheader (abfd);
   if (strcmp (bfd_get_target (abfd), "elf32-hppa-linux") == 0)
     {
-      if (i_ehdrp->e_ident[EI_OSABI] != ELFOSABI_LINUX)
+      if (i_ehdrp->e_ident[EI_OSABI] != ELFOSABI_LINUX &&
+          i_ehdrp->e_ident[EI_OSABI] != ELFOSABI_NONE)
 	return false;
     }
   else
===

c.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2002-12-28  0:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-12-27  2:31 [parisc-linux] Why do we relax e_ident[EI_OSABI] in gdb? Carlos O'Donell
2002-12-27  5:49 ` Grant Grundler
2002-12-27  6:09   ` Grant Grundler
2002-12-28  0:34 ` Randolph Chung

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.