mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-18 14:04:24 +08:00
2003-06-22 Andrew Cagney <cagney@redhat.com>
* osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Handle GNU_ABI_TAG_FREEBSD and GNU_ABI_TAG_NETBSD. Suggested by Momchil Velikov.
This commit is contained in:
parent
345d88d96e
commit
261de1663a
@ -1,3 +1,9 @@
|
|||||||
|
2003-06-22 Andrew Cagney <cagney@redhat.com>
|
||||||
|
|
||||||
|
* osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Handle
|
||||||
|
GNU_ABI_TAG_FREEBSD and GNU_ABI_TAG_NETBSD. Suggested by Momchil
|
||||||
|
Velikov.
|
||||||
|
|
||||||
2003-06-22 Daniel Jacobowitz <drow@mvista.com>
|
2003-06-22 Daniel Jacobowitz <drow@mvista.com>
|
||||||
|
|
||||||
* cli/cli-cmds.c (shell_escape): Silence warnings from old
|
* cli/cli-cmds.c (shell_escape): Silence warnings from old
|
||||||
|
@ -384,6 +384,14 @@ generic_elf_osabi_sniff_abi_tag_sections (bfd *abfd, asection *sect, void *obj)
|
|||||||
*os_ident_ptr = GDB_OSABI_SOLARIS;
|
*os_ident_ptr = GDB_OSABI_SOLARIS;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case GNU_ABI_TAG_FREEBSD:
|
||||||
|
*os_ident_ptr = GDB_OSABI_FREEBSD_ELF;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case GNU_ABI_TAG_NETBSD:
|
||||||
|
*os_ident_ptr = GDB_OSABI_NETBSD_ELF;
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
internal_error
|
internal_error
|
||||||
(__FILE__, __LINE__,
|
(__FILE__, __LINE__,
|
||||||
|
Loading…
Reference in New Issue
Block a user