Longyi Qi
unread,Jan 21, 2013, 12:22:16 PM1/21/13Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to oclin...@googlegroups.com
Developers,
LLVM community has made this change on Jan 19 in rev 172906. Now all
libTooling based tools also depend on the bitcode reader library.
I have updated OCLint to catch up with this change in a branch. But
before it's merged to master, if you are working on LLVM codebase newer
than 172906, you need to add this library in order to pass the build.
-LLVM_MAP_COMPONENTS_TO_LIBRARIES(REQ_LLVM_LIBRARIES arminfo
cppbackendinfo debuginfo hexagoninfo mblazeinfo mipsinfo msp430info
nvptxinfo powerpcinfo sparcinfo x86info xcoreinfo armdesc hexagondesc
mblazedesc mipsdesc msp430desc nvptxdesc powerpcdesc sparcdesc x86desc
xcoredesc armasmparser asmparser mblazeasmparser mcparser mipsasmparser
x86asmparser)
+LLVM_MAP_COMPONENTS_TO_LIBRARIES(REQ_LLVM_LIBRARIES arminfo
cppbackendinfo debuginfo hexagoninfo mblazeinfo mipsinfo msp430info
nvptxinfo powerpcinfo sparcinfo x86info xcoreinfo armdesc hexagondesc
mblazedesc mipsdesc msp430desc nvptxdesc powerpcdesc sparcdesc x86desc
xcoredesc armasmparser asmparser bitreader mblazeasmparser mcparser
mipsasmparser x86asmparser)
There is an extra 'bitreader' between 'asmparser' and 'mblazeasmparser'.
Regards,
Longyi