mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
e3ffa159db
Here we define the `graph` subcommand which generates a graph from the function call information and uses it to present the call information graphically with additional annotations. Reviewers: dblaikie, dberris Differential Revision: https://reviews.llvm.org/D27243 llvm-svn: 292156
19 lines
317 B
CMake
19 lines
317 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-converter.cc
|
|
xray-extract.cc
|
|
xray-extract.cc
|
|
xray-graph.cc
|
|
xray-registry.cc)
|
|
|
|
add_llvm_tool(llvm-xray llvm-xray.cc ${LLVM_XRAY_TOOLS})
|