Displaying 2 results from an estimated 2 matches for "4df54849".
2012 Jun 07
0
[LLVMdev] dynamic linkage for jit
...____________________
LLVM Developers mailing list
LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120607/4df54849/attachment.html>
2012 Jun 02
2
[LLVMdev] dynamic linkage for jit
Hi,
I want to execute functions in a module, this module will have dependencies resolved in other modules. the modules might change (dynamic compilation environment) so i would prefer not not link all the dependencies in a single monolithic module, that is, if it can be avoided
I hope to use Linker::linkModules but this is always destructive. That is ok for one module depending on a single one,