Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/llvm/lib/DebugInfo/Symbolize/
DSymbolize.cpp386 SmallString<16> DebugPath = OrigDir; in findDebugBinary() local
388 llvm::sys::path::append(DebugPath, DebuglinkName); in findDebugBinary()
389 if (checkFileCRC(DebugPath, CRCHash)) { in findDebugBinary()
390 Result = std::string(DebugPath.str()); in findDebugBinary()
394 DebugPath = OrigDir; in findDebugBinary()
395 llvm::sys::path::append(DebugPath, ".debug", DebuglinkName); in findDebugBinary()
396 if (checkFileCRC(DebugPath, CRCHash)) { in findDebugBinary()
397 Result = std::string(DebugPath.str()); in findDebugBinary()
406 DebugPath = Opts.FallbackDebugPath; in findDebugBinary()
410 DebugPath = "/usr/libdata/debug"; in findDebugBinary()
[all …]