Home
last modified time | relevance | path

Searched refs:DebugPath (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp438 SmallString<16> DebugPath = OrigDir; in findDebugBinary() local
440 llvm::sys::path::append(DebugPath, DebuglinkName); in findDebugBinary()
441 if (checkFileCRC(DebugPath, CRCHash)) { in findDebugBinary()
442 Result = std::string(DebugPath); in findDebugBinary()
446 DebugPath = OrigDir; in findDebugBinary()
447 llvm::sys::path::append(DebugPath, ".debug", DebuglinkName); in findDebugBinary()
448 if (checkFileCRC(DebugPath, CRCHash)) { in findDebugBinary()
449 Result = std::string(DebugPath); in findDebugBinary()
458 DebugPath = Opts.FallbackDebugPath; in findDebugBinary()
462 DebugPath = "/usr/libdata/debug"; in findDebugBinary()
[all …]