We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b0fcf1 commit e575483Copy full SHA for e575483
llvm/examples/OrcV2Examples/LLJITWithRemoteDebugging/RemoteJITUtils.cpp
@@ -29,7 +29,8 @@ using namespace llvm::orc;
29
30
Expected<std::unique_ptr<DefinitionGenerator>>
31
loadDylib(ExecutionSession &ES, StringRef RemotePath) {
32
- if (auto Handle = ES.getExecutorProcessControl().loadDylib(RemotePath.data()))
+ if (auto Handle = ES.getExecutorProcessControl().getDylibMgr().loadDylib(
33
+ RemotePath.data()))
34
return std::make_unique<EPCDynamicLibrarySearchGenerator>(ES, *Handle);
35
else
36
return Handle.takeError();
0 commit comments