[cfe-commits] [clang-tools-extra] r161550 - /clang-tools-extra/trunk/remove-cstr-calls/Makefile
Chandler Carruth
chandlerc at gmail.com
Wed Aug 8 17:12:21 PDT 2012
Author: chandlerc
Date: Wed Aug 8 19:12:21 2012
New Revision: 161550
URL: http://llvm.org/viewvc/llvm-project?rev=161550&view=rev
Log:
Fix the order of the link arguments for this tool. I think there is
something fishy with the rest of the order too, but this at least lets
it build for me.
Modified:
clang-tools-extra/trunk/remove-cstr-calls/Makefile
Modified: clang-tools-extra/trunk/remove-cstr-calls/Makefile
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/remove-cstr-calls/Makefile?rev=161550&r1=161549&r2=161550&view=diff
==============================================================================
--- clang-tools-extra/trunk/remove-cstr-calls/Makefile (original)
+++ clang-tools-extra/trunk/remove-cstr-calls/Makefile Wed Aug 8 19:12:21 2012
@@ -17,8 +17,8 @@
include $(CLANG_LEVEL)/../../Makefile.config
LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser support mc
-USEDLIBS = clangEdit.a clangTooling.a clangFrontend.a clangSerialization.a clangDriver.a \
+USEDLIBS = clangTooling.a clangFrontend.a clangSerialization.a clangDriver.a \
clangRewrite.a clangParse.a clangSema.a clangAnalysis.a \
- clangAST.a clangASTMatchers.a clangLex.a clangBasic.a
+ clangAST.a clangASTMatchers.a clangEdit.a clangLex.a clangBasic.a
include $(CLANG_LEVEL)/Makefile
More information about the cfe-commits
mailing list