[LLVMbugs] [Bug 677] Pure virtual class function results in invalid emitted C code
bugzilla-daemon at cs.uiuc.edu
bugzilla-daemon at cs.uiuc.edu
Thu Dec 15 21:02:14 PST 2005
http://llvm.cs.uiuc.edu/bugs/show_bug.cgi?id=677
sabre at nondot.org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
------- Additional Comments From sabre at nondot.org 2005-12-15 23:02 -------
The problem here is that you're not linking in libstdc++ correctly. instead of:
$ llvm-link -f -o=generated.bc main.bc module.bc
Use:
$ llvm-g++ main.bc module.bc -o generated
... which will create "generated.bc", with all symbols available.
-Chris
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
More information about the llvm-bugs
mailing list