[Lldb-commits] [lldb] [lldb] Fix progress reporting for SymbolLocatorDebugSymbols (PR #79624)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Fri Jan 26 12:11:23 PST 2024
================
@@ -776,6 +776,10 @@ std::optional<FileSpec> SymbolLocatorDebugSymbols::LocateExecutableSymbolFile(
exec_fspec ? exec_fspec->GetFilename().AsCString("<NULL>") : "<NULL>",
arch ? arch->GetArchitectureName() : "<NULL>", (const void *)uuid);
+ Progress progress(
+ "Locating external symbol file",
----------------
JDevlieghere wrote:
We're looking for the symbol file (although dsymForUUID can also get you the symbol rich binary). This is the same message already emitted by `SymbolLocatorDefault::LocateExecutableSymbolFile`.
https://github.com/llvm/llvm-project/pull/79624
More information about the lldb-commits
mailing list