Displaying 3 results from an estimated 3 matches for "createfromexe".
2018 Jan 05
0
llvm 5.0.1 requires downstream workaround for diaguids.lib
...ror LNK2019: unresolved external
symbol "long __cdecl NoRegCoCreate(wchar_t const *,struct _GUID const
&,struct _GUID const &,void * *)" (?NoRegCoCreate@@YAJPEB_WAEBU_GUID@
@1PEAPEAX at Z) referenced in function "public: static class llvm::Error
__cdecl llvm::pdb::DIASession::createFromExe(class llvm::StringRef,class
std::unique_ptr<class llvm::pdb::IPDBSession,struct
std::default_delete<class llvm::pdb::IPDBSession> > &)"
(?createFromExe at DIASession@pdb at llvm@@SA?AVError at 3@VStringRef at 3
@AEAV?$unique_ptr at VIPDBSession@pdb at llvm@@U?$default_delete at...
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
}
-------------------------------------------------------------------------------------------------
[htt...
2018 Jan 23
0
MachineVerifier and undef
...: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
> }
>
> -----------------------------------------------------------...