mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
68298db4f6
llvm-profdata.cpp has the following include chain: llvm/ProfileData/SampleProfReader.h llvm/IR/Function.h llvm/IR/Argument.h llvm/IR/Attributes.h llvm/IR/Attributes.gen This means llvm-profdata needs to depend on intrinsics_gen. llvm-svn: 287394
13 lines
141 B
CMake
13 lines
141 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Core
|
|
ProfileData
|
|
Support
|
|
)
|
|
|
|
add_llvm_tool(llvm-profdata
|
|
llvm-profdata.cpp
|
|
|
|
DEPENDS
|
|
intrinsics_gen
|
|
)
|