diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-01-20 14:53:49 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-01-20 14:53:49 +0000 |
commit | eedba1d620cb867a715495fb139315eaa39a8873 (patch) | |
tree | 858bc0dc79f626bfd092affb9c726cbd482dfc6a | |
parent | 4bdc60434c79126b75aee2bb391275f3bb746364 (diff) |
Add bitreader to LINK_COMPONENTS in users of libclang, c-arcmt-test and c-index-test.
They don't link cygclang.dll, but libclang.a on cygwin.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172980 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/c-arcmt-test/Makefile | 2 | ||||
-rw-r--r-- | tools/c-index-test/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/c-arcmt-test/Makefile b/tools/c-arcmt-test/Makefile index 3372daebcb..1b78df0aba 100644 --- a/tools/c-arcmt-test/Makefile +++ b/tools/c-arcmt-test/Makefile @@ -21,7 +21,7 @@ NO_INSTALL = 1 # LINK_COMPONENTS before including Makefile.rules include $(CLANG_LEVEL)/../../Makefile.config -LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser support mc +LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader support mc # Note that 'USEDLIBS' must include all of the core clang libraries # as clang.dll is unavailable on cygming yet. diff --git a/tools/c-index-test/Makefile b/tools/c-index-test/Makefile index 11719545c4..dd5d1ef8b3 100644 --- a/tools/c-index-test/Makefile +++ b/tools/c-index-test/Makefile @@ -22,7 +22,7 @@ TOOL_NO_EXPORTS = 1 # LINK_COMPONENTS before including Makefile.rules include $(CLANG_LEVEL)/../../Makefile.config -LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser support mc +LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader support mc USEDLIBS = clang.a \ clangFormat.a clangRewriteCore.a \ clangFrontend.a clangDriver.a \ |