Displaying 3 results from an estimated 3 matches for "nativesession".
2018 Jan 23
1
[PDB] Error "DIA is not installed on the system" occured in `llvm::pdb::loadDataForExe()`.
...-----------------------
Error llvm::pdb::loadDataForEXE(PDB_ReaderType Type, StringRef Path,
std::unique_ptr<IPDBSession> &Session) {
// Create the correct concrete instance type based on the value of Type.
if (Type == PDB_ReaderType::Native)
return NativeSession::createFromExe(Path, Session);
#if LLVM_ENABLE_DIA_SDK
return DIASession::createFromExe(Path, Session);
#else
return make_error<GenericError>("DIA is not installed on the system");
#endif
}
---------------------------------------------------------------------------------------...
2017 Jul 20
3
status of DebugInfo/PDB/Native
Hello,
Is anyone working on implementing DebugInfo/PDB that doesn't depend on DIA?
What would it take to have minimal implementation that would allow to take
a PDB file and look up symbols using llvm-symbolizer on a non-Windows (e.g.
Linux or MacOS) platform?
Regards,
Dmitri
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2018 Jan 23
0
MachineVerifier and undef
...gt; Error llvm::pdb::loadDataForEXE(PDB_ReaderType Type, StringRef Path,
> std::unique_ptr<IPDBSession> &Session) {
> // Create the correct concrete instance type based on the value of Type.
> if (Type == PDB_ReaderType::Native)
> return NativeSession::createFromExe(Path, Session);
>
> #if LLVM_ENABLE_DIA_SDK
> return DIASession::createFromExe(Path, Session);
> #else
> return make_error<GenericError>("DIA is not installed on the system");
> #endif
> }
>
> --------------------------------------------...