mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
4e65f702e9
Summary: This is a tool for comparing the function graphs produced by the llvm-xray graph too. It takes the form of a new subcommand of the llvm-xray tool 'graph-diff'. This initial version of the patch is very rough, but it is close to feature complete. Depends on D29363 Reviewers: dblaikie, dberris Reviewed By: dberris Subscribers: mgorny, llvm-commits Differential Revision: https://reviews.llvm.org/D29320 llvm-svn: 301160
21 lines
361 B
CMake
21 lines
361 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
${LLVM_TARGETS_TO_BUILD}
|
|
DebugInfoDWARF
|
|
Object
|
|
Support
|
|
Symbolize
|
|
XRay)
|
|
|
|
set(LLVM_XRAY_TOOLS
|
|
func-id-helper.cc
|
|
xray-account.cc
|
|
xray-color-helper.cc
|
|
xray-converter.cc
|
|
xray-extract.cc
|
|
xray-extract.cc
|
|
xray-graph.cc
|
|
xray-graph-diff.cc
|
|
xray-registry.cc)
|
|
|
|
add_llvm_tool(llvm-xray llvm-xray.cc ${LLVM_XRAY_TOOLS})
|