aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2013-01-19 18:24:13 +0000
committerChris Lattner <sabre@nondot.org>2013-01-19 18:24:13 +0000
commitac179ca12b38afae11f004f986981152d1fa18b1 (patch)
treee3db857c0f5b1a267766bff47322f3142d4bb309
parent69a8552f85c1b926320418cb98fe02988c79578f (diff)
this depends on the bitcode reader, since it is using it.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172905 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--tools/libclang/CMakeLists.txt1
-rw-r--r--tools/libclang/Makefile2
2 files changed, 2 insertions, 1 deletions
diff --git a/tools/libclang/CMakeLists.txt b/tools/libclang/CMakeLists.txt
index 69480db4fe..dd4eccf8dc 100644
--- a/tools/libclang/CMakeLists.txt
+++ b/tools/libclang/CMakeLists.txt
@@ -2,6 +2,7 @@ set(LLVM_LINK_COMPONENTS
${LLVM_TARGETS_TO_BUILD}
asmparser
support
+ bitreader
mc
)
diff --git a/tools/libclang/Makefile b/tools/libclang/Makefile
index 23ab188433..53aec69701 100644
--- a/tools/libclang/Makefile
+++ b/tools/libclang/Makefile
@@ -16,7 +16,7 @@ LINK_LIBS_IN_SHARED = 1
SHARED_LIBRARY = 1
include $(CLANG_LEVEL)/../../Makefile.config
-LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser support mc
+LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader support mc
USEDLIBS = clangFrontend.a clangDriver.a \
clangTooling.a \
clangSerialization.a \