diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-11-14 11:45:16 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-11-14 11:45:16 +0000 |
commit | 05c837ec24ba0de81c2d4068b925996f3cadef53 (patch) | |
tree | ea5f53034077779f255b8c1f38c8abb9a676eda4 /tools | |
parent | d19c4ceb2640bcfef6b25f90f3527ffd6bbbb1cf (diff) | |
download | external_llvm-05c837ec24ba0de81c2d4068b925996f3cadef53.zip external_llvm-05c837ec24ba0de81c2d4068b925996f3cadef53.tar.gz external_llvm-05c837ec24ba0de81c2d4068b925996f3cadef53.tar.bz2 |
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
Diffstat (limited to 'tools')
-rw-r--r-- | tools/llvm-cov/CMakeLists.txt | 2 | ||||
-rw-r--r-- | tools/llvm-cov/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/llvm-cov/CMakeLists.txt b/tools/llvm-cov/CMakeLists.txt index 7184b9e..67cea71 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 2d47ce4..efed6cc 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 |