From 6d8bf5bcd246484f9e56207e2e71cfbac36d9d62 Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Thu, 9 Aug 2012 00:12:21 +0000 Subject: [PATCH] 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. llvm-svn: 161550 --- clang-tools-extra/remove-cstr-calls/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clang-tools-extra/remove-cstr-calls/Makefile b/clang-tools-extra/remove-cstr-calls/Makefile index 7f22bd51a792..80a4d0f5d4c6 100644 --- a/clang-tools-extra/remove-cstr-calls/Makefile +++ b/clang-tools-extra/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 -- GitLab