mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-03 17:31:50 +00:00
4339d8bd93
llvm-extract.cpp has the following include chain: llvm/Bitcode/BitcodeWriterPass.h llvm/IR/PassManager.h llvm/IR/Function.h llvm/IR/Argument.h llvm/IR/Attributes.h llvm/IR/Attributes.gen This means llvm-extract needs to depend on intrinsics_gen. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@287430 91177308-0d34-0410-b5e6-96231b3b80d8
15 lines
154 B
CMake
15 lines
154 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
BitWriter
|
|
Core
|
|
IPO
|
|
IRReader
|
|
Support
|
|
)
|
|
|
|
add_llvm_tool(llvm-extract
|
|
llvm-extract.cpp
|
|
|
|
DEPENDS
|
|
intrinsics_gen
|
|
)
|