diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-06-18 08:52:27 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-06-18 08:52:27 +0000 |
commit | 25a2ef39e6fda2d65d1129a220fec50ffe336e39 (patch) | |
tree | f11d3c8585bf2099b933f34adf682d1b4561089b | |
parent | be16b8986ed8203aaa8035b3ce1b217729c0238f (diff) |
tools/arcmt-test: Don't attempt to link redundant libclang (clang-c).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@133342 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/arcmt-test/CMakeLists.txt | 1 | ||||
-rw-r--r-- | tools/arcmt-test/Makefile | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/tools/arcmt-test/CMakeLists.txt b/tools/arcmt-test/CMakeLists.txt index 11ea6e4390..9227f8ee63 100644 --- a/tools/arcmt-test/CMakeLists.txt +++ b/tools/arcmt-test/CMakeLists.txt @@ -1,5 +1,4 @@ set(LLVM_USED_LIBS - libclang clangARCMigrate clangRewrite ) diff --git a/tools/arcmt-test/Makefile b/tools/arcmt-test/Makefile index cf435bd417..c143e27f33 100644 --- a/tools/arcmt-test/Makefile +++ b/tools/arcmt-test/Makefile @@ -17,7 +17,7 @@ TOOL_NO_EXPORTS = 1 NO_INSTALL = 1 LINK_COMPONENTS := support mc -USEDLIBS = clang.a clangIndex.a clangARCMigrate.a clangRewrite.a \ +USEDLIBS = clangIndex.a clangARCMigrate.a clangRewrite.a \ clangFrontend.a clangDriver.a clangSerialization.a clangParse.a \ clangSema.a clangAnalysis.a clangAST.a clangLex.a clangBasic.a |