mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 13:09:48 +00:00
* sparc64fbsd-tdep.c: Include "solib-svr4.h".
(sparc64fbsd_init_abi): Set skip_trampoline_code and solib_svr4_fetch_link_map_offsets. * Makefile.in (sparc64fbsd-tdep.o): Update dependencies.
This commit is contained in:
parent
65dce80e6f
commit
9e07977bda
@ -1,3 +1,10 @@
|
||||
2005-03-06 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* sparc64fbsd-tdep.c: Include "solib-svr4.h".
|
||||
(sparc64fbsd_init_abi): Set skip_trampoline_code and
|
||||
solib_svr4_fetch_link_map_offsets.
|
||||
* Makefile.in (sparc64fbsd-tdep.o): Update dependencies.
|
||||
|
||||
2005-03-06 Daniel Jacobowitz <dan@codesourcery.com>
|
||||
|
||||
* linux-nat.c (child_follow_fork): Call target_terminal_ours before
|
||||
|
@ -2542,7 +2542,7 @@ sparc64fbsd-nat.o: sparc64fbsd-nat.c $(defs_h) $(target_h) $(fbsd_nat_h) \
|
||||
sparc64fbsd-tdep.o: sparc64fbsd-tdep.c $(defs_h) $(frame_h) \
|
||||
$(frame_unwind_h) $(gdbcore_h) $(osabi_h) $(regcache_h) $(regset_h) \
|
||||
$(target_h) $(trad_frame_h) $(gdb_assert_h) $(gdb_string_h) \
|
||||
$(sparc64_tdep_h)
|
||||
$(sparc64_tdep_h) $(solib_svr4_h)
|
||||
sparc64-linux-nat.o: sparc64-linux-nat.c $(defs_h) $(sparc64_tdep_h) \
|
||||
$(sparc_nat_h)
|
||||
sparc64-linux-tdep.o: sparc64-linux-tdep.c $(defs_h) $(gdbarch_h) $(osabi_h) \
|
||||
|
@ -33,6 +33,7 @@
|
||||
#include "gdb_string.h"
|
||||
|
||||
#include "sparc64-tdep.h"
|
||||
#include "solib-svr4.h"
|
||||
|
||||
/* From <machine/reg.h>. */
|
||||
const struct sparc_gregset sparc64fbsd_gregset =
|
||||
@ -226,6 +227,11 @@ sparc64fbsd_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
|
||||
frame_unwind_append_sniffer (gdbarch, sparc64fbsd_sigtramp_frame_sniffer);
|
||||
|
||||
sparc64_init_abi (info, gdbarch);
|
||||
|
||||
/* FreeBSD/sparc64 has SVR4-style shared libraries. */
|
||||
set_gdbarch_skip_trampoline_code (gdbarch, find_solib_trampoline_target);
|
||||
set_solib_svr4_fetch_link_map_offsets
|
||||
(gdbarch, svr4_lp64_fetch_link_map_offsets);
|
||||
}
|
||||
|
||||
/* Provide a prototype to silence -Wmissing-prototypes. */
|
||||
|
Loading…
Reference in New Issue
Block a user