Skip to content

Commit

Permalink
gdb/18947: [aarch64]Step into shared library is very slow.
Browse files Browse the repository at this point in the history
Install gdbarch_skip_solib_resolver on aarch64 GNU/Linux

gdb/ChangeLog:

2015-09-11  Mihail-Marian Nistor  <mihail.nistor@freescale.com>

	PR gdb/18947
	* aarch64-linux-tdep.c: (aarch64_linux_init_abi): Install
	glibc_skip_solib_resolver as gdbarch_skip_solib_resolver callback.

Signed-off-by: Mihail-Marian Nistor <mihail.nistor@freescale.com>
  • Loading branch information
Mihail-Marian Nistor authored and Yao Qi committed Sep 11, 2015
1 parent 9ed2dcc commit 6dcaef9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions gdb/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2015-09-11 Mihail-Marian Nistor <mihail.nistor@freescale.com>

PR gdb/18947
* aarch64-linux-tdep.c: (aarch64_linux_init_abi): Install
glibc_skip_solib_resolver as gdbarch_skip_solib_resolver callback.

2015-09-10 Simon Marchi <simon.marchi@ericsson.com>

* ada-lang.c (scan_discrim_bound): Factor out arithmetic
Expand Down
1 change: 1 addition & 0 deletions gdb/aarch64-linux-tdep.c
Original file line number Diff line number Diff line change
Expand Up @@ -961,6 +961,7 @@ aarch64_linux_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)

/* Shared library handling. */
set_gdbarch_skip_trampoline_code (gdbarch, find_solib_trampoline_target);
set_gdbarch_skip_solib_resolver (gdbarch, glibc_skip_solib_resolver);

tramp_frame_prepend_unwinder (gdbarch, &aarch64_linux_rt_sigframe);

Expand Down

0 comments on commit 6dcaef9

Please sign in to comment.