aboutsummaryrefslogtreecommitdiff
path: root/gdb/ChangeLog
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@ericsson.com>2018-12-26 11:49:51 -0500
committerSimon Marchi <simon.marchi@polymtl.ca>2018-12-26 11:49:51 -0500
commit50794b45a2a7330fc32b118bff584a3a2e649ac5 (patch)
tree1ff976fb2cba7808f2ecbfc54bfd167a394f06d8 /gdb/ChangeLog
parent5172760036cc706596970b35f106aa5a9093b44b (diff)
downloadgdb-50794b45a2a7330fc32b118bff584a3a2e649ac5.zip
gdb-50794b45a2a7330fc32b118bff584a3a2e649ac5.tar.gz
gdb-50794b45a2a7330fc32b118bff584a3a2e649ac5.tar.bz2
Improve "set debug separate-debug-file"
"set debug separate-debug-file" shows which candidates are considered, when trying to find separate debug info. But it's not clear if GDB used a certain candidate, and if not, why not. This patch adds some precision: Before: Looking for separate debug info (debug link) for /lib/x86_64-linux-gnu/libc.so.6 Trying /lib/x86_64-linux-gnu/libc-2.23.so Trying /lib/x86_64-linux-gnu/.debug/libc-2.23.so Trying /usr/lib/debug//lib/x86_64-linux-gnu/libc-2.23.so After: Looking for separate debug info (debug link) for /lib/x86_64-linux-gnu/libc.so.6 Trying /lib/x86_64-linux-gnu/libc-2.23.so... no, same file as the objfile. Trying /lib/x86_64-linux-gnu/.debug/libc-2.23.so... no, unable to open. Trying /usr/lib/debug//lib/x86_64-linux-gnu/libc-2.23.so... yes! gdb/ChangeLog: * build-id.c (build_id_to_debug_bfd): Enhance debug output. * symfile.c (separate_debug_file_exists): Likewise.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r--gdb/ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index c37e281..425429e 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2018-12-26 Simon Marchi <simon.marchi@ericsson.com>
+
+ * build-id.c (build_id_to_debug_bfd): Enhance debug output.
+ * symfile.c (separate_debug_file_exists): Likewise.
+
2018-12-24 Andrew Burgess <andrew.burgess@embecosm.com>
* c-exp.y (field_name): Allow DOUBLE_KEYWORD, INT_KEYWORD, LONG,