[Lldb-commits] [lldb] [lldb] Fix progress reporting for SymbolLocatorDebugSymbols (PR #79624)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Fri Jan 26 11:55:44 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",
----------------
clayborg wrote:
Are we looking for an executable here, or the dSYM file? Should be title be "Locating executable file"?
https://github.com/llvm/llvm-project/pull/79624
More information about the lldb-commits
mailing list