[PATCH] D90132: [ORC] Prototype ORC library reorg + RPC based TargetProcessControl.
Stefan Gränitz via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 3 08:08:05 PST 2020
sgraenitz added a comment.
Two issues when trying to build llvm-jitlink-executor with the libs separated:
================
Comment at: llvm/lib/ExecutionEngine/OrcTargetProcess/LLVMBuild.txt:21
parent = ExecutionEngine
required_libraries = Support
----------------
`OrcShared` is required here now
================
Comment at: llvm/lib/ExecutionEngine/OrcTargetProcess/RegisterEHFrames.cpp:72
+ return make_error<JITLinkError>("could not register eh-frame: "
+ "__register_frame function not found");
+}
----------------
We cannot use `JITLinkError` in the target process, because it's defined in JITLink. Could it be a `StringError` for the moment? (One more case below.)
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D90132/new/
https://reviews.llvm.org/D90132
More information about the llvm-commits
mailing list