oprofile 无法生成调用图
我正在尝试使用 oprofile 生成调用图。 编译器是 g++,平台是 linux x86-64,链接器是 gfortran
C++ 代码使用 -fno- omit-frame-pointer 进行编译。 oprofile 以 --callgraph=25 开头。 报告我用 --callgraph 运行。
调用图已生成,但它只包括自我时间,这没有多大用处,
我错过了什么?
I am trying to use oprofile to generate call graph.
Compiler is g++, platform is linux x86-64, linker is gfortran
C++ code is compiled with -fno- omit-frame-pointer.
oprofile is started with --callgraph=25.
report I run with --callgraph.
the call graph is produced but it's only includes self time, which is not much use
what am I missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是否没有
opcontrol --status
检查其输出中 。如果是,请停止分析,执行
opcontrol --callgraph=
,然后重新启动分析。Check if
opcontrol --status
does not havein its output. If it does, stop profiling, do
opcontrol --callgraph=<desired call stack depth>
, and restart profiling.