1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

llvm-cov requires IR and Support as libraries. Instrumentation would be overkill.

llvm-svn: 194695
This commit is contained in:
NAKAMURA Takumi 2013-11-14 11:45:16 +00:00
parent 15d61f4acd
commit 03017d65ec
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
set(LLVM_LINK_COMPONENTS instrumentation )
set(LLVM_LINK_COMPONENTS core support )
add_llvm_tool(llvm-cov
llvm-cov.cpp

View File

@ -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