mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
ef8e89ea73
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. llvm-svn: 287432
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
|
|
)
|