From 05c837ec24ba0de81c2d4068b925996f3cadef53 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Thu, 14 Nov 2013 11:45:16 +0000 Subject: llvm-cov requires IR and Support as libraries. Instrumentation would be overkill. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194695 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llvm-cov/CMakeLists.txt | 2 +- tools/llvm-cov/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'tools') diff --git a/tools/llvm-cov/CMakeLists.txt b/tools/llvm-cov/CMakeLists.txt index 7184b9ebde..67cea71dd0 100644 --- a/tools/llvm-cov/CMakeLists.txt +++ b/tools/llvm-cov/CMakeLists.txt @@ -1,4 +1,4 @@ -set(LLVM_LINK_COMPONENTS instrumentation ) +set(LLVM_LINK_COMPONENTS core support ) add_llvm_tool(llvm-cov llvm-cov.cpp diff --git a/tools/llvm-cov/Makefile b/tools/llvm-cov/Makefile index 2d47ce4d4b..efed6cc794 100644 --- a/tools/llvm-cov/Makefile +++ b/tools/llvm-cov/Makefile @@ -9,7 +9,7 @@ LEVEL := ../.. TOOLNAME := llvm-cov -LINK_COMPONENTS := instrumentation +LINK_COMPONENTS := core support # This tool has no plugins, optimize startup time. TOOL_NO_EXPORTS := 1 -- cgit v1.2.3