mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-10 22:46:25 +00:00
f11a790abc
llvm-link.cpp has the following include chain: llvm/Bitcode/BitcodeWriter.h llvm/IR/ModuleSummaryIndex.h llvm/IR/Module.h llvm/IR/Function.h llvm/IR/Argument.h llvm/IR/Attributes.h llvm/IR/Attributes.gen This means llvm-link needs to depend on intrinsics_gen. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@287431 91177308-0d34-0410-b5e6-96231b3b80d8
17 lines
177 B
CMake
17 lines
177 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
BitWriter
|
|
Core
|
|
IRReader
|
|
Linker
|
|
Object
|
|
Support
|
|
TransformUtils
|
|
)
|
|
|
|
add_llvm_tool(llvm-link
|
|
llvm-link.cpp
|
|
|
|
DEPENDS
|
|
intrinsics_gen
|
|
)
|