mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-27 22:10:32 +00:00
* NEWS (New native configurations): Mention OpenBSD/sparc and
OpenBSD/sparc64. * configure.tgt: Add sparc-*-openbsd* and sparc64-*-openbsd*. * configure.host: Likewise. * sparcnbsd-tdep.c (_initialize_sparnbsd_tdep): Register OS ABI handler for OpenBSD. * sparc64nbsd-tdep.c (_initialize_sparc64nbsd_tdep): Likewise.
This commit is contained in:
parent
8a58e4e85f
commit
f2cab56957
@ -1,3 +1,13 @@
|
||||
2004-01-23 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* NEWS (New native configurations): Mention OpenBSD/sparc and
|
||||
OpenBSD/sparc64.
|
||||
* configure.tgt: Add sparc-*-openbsd* and sparc64-*-openbsd*.
|
||||
* configure.host: Likewise.
|
||||
* sparcnbsd-tdep.c (_initialize_sparnbsd_tdep): Register OS ABI
|
||||
handler for OpenBSD.
|
||||
* sparc64nbsd-tdep.c (_initialize_sparc64nbsd_tdep): Likewise.
|
||||
|
||||
2004-01-22 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* sparcnbsd-tdep.c (sparcnbsd_core_osabi_sniffer): New function.
|
||||
|
2
gdb/NEWS
2
gdb/NEWS
@ -37,6 +37,8 @@ encountered these.
|
||||
* New native configurations
|
||||
|
||||
NetBSD/amd64 x86_64-*-netbsd*
|
||||
OpenBSD/sparc sparc-*-openbsd*
|
||||
OpenBSD/sparc64 sparc64-*-openbsd*
|
||||
|
||||
* New debugging protocols
|
||||
|
||||
|
@ -132,6 +132,8 @@ sparc-*-netbsdelf*) gdb_host=nbsdelf ;;
|
||||
sparc-*-netbsdaout*) gdb_host=nbsdaout ;;
|
||||
sparc-*-netbsd*) gdb_host=nbsdaout ;;
|
||||
sparc64-*-netbsd*) gdb_host=nbsd64 ;;
|
||||
sparc-*-openbsd*) gdb_host=nbsdelf ;;
|
||||
sparc64-*-openbsd*) gdb_host=nbsd64 ;;
|
||||
sparc-*-solaris2* | sparcv9-*-solaris2* | sparc64-*-solaris2*)
|
||||
gdb_host=sol2
|
||||
;;
|
||||
|
@ -190,6 +190,8 @@ sparc-*-linux*) gdb_target=linux ;;
|
||||
sparc64-*-linux*) gdb_target=linux64 ;;
|
||||
sparc-*-netbsd*) gdb_target=nbsd ;;
|
||||
sparc64-*-netbsd*) gdb_target=nbsd64 ;;
|
||||
sparc-*-openbsd*) gdb_target=nbsd ;;
|
||||
sparc64-*-openbsd*) gdb_target=nbsd64 ;;
|
||||
sparc-*-solaris2.[0-6] | sparc-*-solaris2.[0-6].*)
|
||||
gdb_target=sol2
|
||||
;;
|
||||
|
@ -243,4 +243,6 @@ _initialize_sparc64nbsd_tdep (void)
|
||||
{
|
||||
gdbarch_register_osabi (bfd_arch_sparc, bfd_mach_sparc_v9,
|
||||
GDB_OSABI_NETBSD_ELF, sparc64nbsd_init_abi);
|
||||
gdbarch_register_osabi (bfd_arch_sparc, bfd_mach_sparc_v9,
|
||||
GDB_OSABI_OPENBSD_ELF, sparc64nbsd_init_abi);
|
||||
}
|
||||
|
@ -312,4 +312,6 @@ _initialize_sparnbsd_tdep (void)
|
||||
sparc32nbsd_aout_init_abi);
|
||||
gdbarch_register_osabi (bfd_arch_sparc, 0, GDB_OSABI_NETBSD_ELF,
|
||||
sparc32nbsd_elf_init_abi);
|
||||
gdbarch_register_osabi (bfd_arch_sparc, 0, GDB_OSABI_OPENBSD_ELF,
|
||||
sparc32nbsd_elf_init_abi);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user