aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2012-08-09 00:12:21 +0000
committerChandler Carruth <chandlerc@gmail.com>2012-08-09 00:12:21 +0000
commit08170756fe758f8d88cc95ba8b61316f72eea000 (patch)
tree148fff89423b404c11859de87fe049d664f26e17
parentda86effe3e6b81f0cc1b463f64bfaa44f163acfe (diff)
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. git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@161550 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--remove-cstr-calls/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/remove-cstr-calls/Makefile b/remove-cstr-calls/Makefile
index 7f22bd51..80a4d0f5 100644
--- a/remove-cstr-calls/Makefile
+++ b/remove-cstr-calls/Makefile
@@ -17,8 +17,8 @@ TOOL_NO_EXPORTS = 1
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