[cfe-commits] r80384 - /cfe/trunk/tools/CIndex/Makefile

Ted Kremenek kremenek at apple.com
Fri Aug 28 11:29:48 PDT 2009


Author: kremenek
Date: Fri Aug 28 13:29:48 2009
New Revision: 80384

URL: http://llvm.org/viewvc/llvm-project?rev=80384&view=rev
Log:
Tweak CIndex file to resolve to linking issues with the clang libraries. In
particular, clangFrontend was not being linked in.

Modified:
    cfe/trunk/tools/CIndex/Makefile

Modified: cfe/trunk/tools/CIndex/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/CIndex/Makefile?rev=80384&r1=80383&r2=80384&view=diff

==============================================================================
--- cfe/trunk/tools/CIndex/Makefile (original)
+++ cfe/trunk/tools/CIndex/Makefile Fri Aug 28 13:29:48 2009
@@ -21,8 +21,8 @@
 LINK_LIBS_IN_SHARED = 1
 SHARED_LIBRARY = 1
 
-LINK_COMPONENTS := bitreader
-USEDLIBS = clangIndex.a clangAST.a clangLex.a clangBasic.a 
+LINK_COMPONENTS := support
+USEDLIBS = clangFrontend.a clangIndex.a clangAST.a clangLex.a clangBasic.a
 
 include $(LEVEL)/Makefile.common
 





More information about the cfe-commits mailing list