You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Even without specifying the paths to search for the debug file, for a given
/path/to/file with file.debug in the .gnu_debuglink section, gdb will search:
- /path/to/file.debug
- /path/to/.debug/file.debug
- /usr/lib/debug/path/to/file.debug
dump_syms should do the same.
Note the debug link could be "file", so we should avoid searching /path/to/file
again.
Original issue reported on code.google.com by [email protected] on 10 Feb 2015 at 2:47
The text was updated successfully, but these errors were encountered:
It might be nicer to support finding debug files with build-id.
(https://sourceware.org/gdb/onlinedocs/gdb/Separate-Debug-Files.html)
For example, libdbus on Ubuntu uses build-id to provide debug files.
(http://packages.ubuntu.com/trusty/amd64/dbus-1-dbg/filelist)
I have a patch to do the "debug link" method:
https://breakpad.appspot.com/7784002/ but I want to look into test coverage
first so I don't accidentally break something while shuffling code around.
Original issue reported on code.google.com by
[email protected]
on 10 Feb 2015 at 2:47The text was updated successfully, but these errors were encountered: