From bb21884d5428ecf7b3c09192fc4ed46b2f504382 Mon Sep 17 00:00:00 2001 From: Mark Kettenis Date: Thu, 4 Jul 2002 15:36:51 +0000 Subject: * osabi.c (generic_elf_osabi_sniffer): Add check for FreeBSD 3.x's traditonal string branding within the ELF header. --- gdb/osabi.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'gdb/osabi.c') diff --git a/gdb/osabi.c b/gdb/osabi.c index 1e122b8..c152cb4 100644 --- a/gdb/osabi.c +++ b/gdb/osabi.c @@ -408,6 +408,15 @@ generic_elf_osabi_sniffer (bfd *abfd) break; } + if (osabi == GDB_OSABI_UNKNOWN) + { + /* The FreeBSD folks have been naughty; they stored the string + "FreeBSD" in the padding of the e_ident field of the ELF + header to "brand" their ELF binaries in FreeBSD 3.x. */ + if (strcmp (&elf_elfheader (abfd)->e_ident[8], "FreeBSD") == 0) + osabi = GDB_OSABI_FREEBSD_ELF; + } + return osabi; } -- cgit v1.1