Julian Oppermann
2014-Apr-17 22:40 UTC
[LLVMdev] "lazy symbol binding failed" with dynamically loaded pass in opt
Hello LLVM devs, I’m running into the following problem when loading my custom passes in opt on OS X 10.9 (which work fine on Linux): dyld: lazy symbol binding failed: Symbol not found: __ZN4llvm9CalculateINS_8FunctionEPNS_10BasicBlockEEEvRNS_17DominatorTreeBaseINS_11GraphTraitsIT0_E8NodeTypeEEERT_ Referenced from: /Users/julian/Src/llvm/Debug+Asserts/lib/Nymblle.dylib Expected in: flat namespace dyld: Symbol not found: __ZN4llvm9CalculateINS_8FunctionEPNS_10BasicBlockEEEvRNS_17DominatorTreeBaseINS_11GraphTraitsIT0_E8NodeTypeEEERT_ Referenced from: /Users/julian/Src/llvm/Debug+Asserts/lib/Nymblle.dylib Expected in: flat namespace I’m building the module „in-tree“; the Makefile contains the same settings as the Hello pass. nm tells me the resulting library (Nymblle.dylib) does not contain the missing symbols [U __ZN4llvm9Calculate...], whereas the opt executable (which is from the same LLVM build I use to build the module) does [<some address> t __ZN4llvm9Calculate…]. I think I’m missing some obvious difference in the way Linux and OS X handle dynamic libraries here, so any hints on why the symbols are found to be missing would be welcome. Thanks in advance! Julian
Tim Northover
2014-Apr-18 08:08 UTC
[LLVMdev] "lazy symbol binding failed" with dynamically loaded pass in opt
Hi Julian, On 17 April 2014 23:40, Julian Oppermann <oppermann at esa.informatik.tu-darmstadt.de> wrote:> I’m running into the following problem when loading my custom passes in opt on OS X 10.9 (which work fine on Linux):One common problem (the only one I really know about, unfortunately) is trying to load a module into Xcode's copy of "opt" rather than one from the same tree as your module. Xcode's one comes from a separate branch and is almost certainly ABI-incompatible with every single revision of the main LLVM tree, in one way or another. Cheers. Tim.
Julian Oppermann
2014-Apr-18 12:32 UTC
[LLVMdev] "lazy symbol binding failed" with dynamically loaded pass in opt
Hi Tim, Dear List, Am 18.04.2014 um 10:08 schrieb Tim Northover <t.p.northover at gmail.com>:> One common problem (the only one I really know about, unfortunately) > is trying to load a module into Xcode's copy of "opt" rather than one > from the same tree as your module.I just double-checked that I use the opt executable from the same tree I use to build the module. This tree is configured as a Debug+Asserts build, and compiled by the system compiler (which identifies itself as "Apple LLVM version 5.1 (clang-503.0.40) (based on LLVM 3.4svn)“. Would compiling the LLVM tree with another compiler, e.g., a recent GCC, make any difference? I tried various combinations of linking my passes with the related libraries via USEDLIBS, LLVMLIBS and LINK_COMPONENTS with no success. The outcome is either that opt does not load the module at all because of duplicated symbols, or that my custom passes don’t register properly at runtime (e.g., they’re not visible in „opt --help“) Cheers, Julian
Seemingly Similar Threads
- [LLVMdev] "lazy symbol binding failed" with dynamically loaded pass in opt
- [LLVMdev] dyld: lazy symbol binding failed: fast lazy bind offset out of range
- [LLVMdev] dyld: lazy symbol binding failed: fast lazy bind offset out of range
- [LLVMdev] dyld: lazy symbol binding failed: fast lazy bind offset out of range
- [LLVMdev] dyld: lazy symbol binding failed: fast lazy bind offset out of range