[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 Oct 27 07:48:51 PDT 2020


sgraenitz added inline comments.


================
Comment at: llvm/tools/llvm-jitlink/llvm-jitlink.cpp:817
 
-  if (!NoExec && !TT.isOSWindows())
+  if (!NoExec && !this->TPC->getTargetTriple().isOSWindows())
     ObjLayer.addPlugin(std::make_unique<EHFrameRegistrationPlugin>(
----------------
I think this only works for `isOSBinFormatMachO()` at the moment. Current symptom when targeting ELF:
```
bin/llvm-jitlink: Missing definition for llvm_orc_registerEHFrameSectionWrapper
```



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