Displaying 2 results from an estimated 2 matches for "8c50422f".
2012 Mar 01
0
[LLVMdev] Linking problem in a pass
...___
> 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/20120301/8c50422f/attachment.html>
2012 Mar 01
2
[LLVMdev] Linking problem in a pass
My pass uses another class which is defined in a separate .h file, which
sits in the same folder as the pass .cpp file. The pass compiles fine, but
when using the pass "opt -load ...", there is an error: opt symbol lookup
error .... undefined symbol xxx, where xxx is the class name. It looks
like that class file's object file is not linked into the pass.so file. How
should I change