[Lldb-commits] [PATCH] D40539: Allow using the object file name for debug symbol resolution

Stephane Sezer via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Tue Nov 28 09:58:59 PST 2017


sas added a comment.

Basically, if you have a `.debug` directory in the same directory where the original object file is, you can have debug symbols there. For instance, you can have:
/my/project/myElf.exe
/my/project/.debug/myElf.exe

with the first file being a standard stripped elf file, and the second one being the associated debug symbols.

One other place where these names can be used is with the `target.debug-file-search-paths` setting.


https://reviews.llvm.org/D40539





More information about the lldb-commits mailing list