1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

Fix library dependency for llvm-lto after r262977

It is a transitive dependency, so static build are OK but not build
with individual DSO for each LLVM library.

From: Mehdi Amini <mehdi.amini@apple.com>
llvm-svn: 262987
This commit is contained in:
Mehdi Amini 2016-03-09 02:34:13 +00:00
parent 639ae6b08b
commit dba15c4ea5
2 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@ set(LLVM_LINK_COMPONENTS
${LLVM_TARGETS_TO_BUILD}
BitWriter
Core
IRReader
LTO
MC
Object

View File

@ -19,4 +19,4 @@
type = Tool
name = llvm-lto
parent = Tools
required_libraries = BitWriter Core LTO Object Support all-targets
required_libraries = BitWriter Core IRReader LTO Object Support all-targets