mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-14 07:31:47 +00:00
252aa32d02
llvm-nm.cpp has the following include chain: llvm/IR/Function.h llvm/IR/Argument.h llvm/IR/Attributes.h llvm/IR/Attributes.gen This means llvm-nm needs to depend on intrinsics_gen. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@287432 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
183 B
CMake
16 lines
183 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
AllTargetsAsmParsers
|
|
AllTargetsDescs
|
|
AllTargetsInfos
|
|
Core
|
|
Object
|
|
Support
|
|
)
|
|
|
|
add_llvm_tool(llvm-nm
|
|
llvm-nm.cpp
|
|
|
|
DEPENDS
|
|
intrinsics_gen
|
|
)
|