From ac179ca12b38afae11f004f986981152d1fa18b1 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 19 Jan 2013 18:24:13 +0000 Subject: [PATCH] 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 --- tools/libclang/CMakeLists.txt | 1 + tools/libclang/Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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 \