2

我正在尝试使用 oprofile 来生成调用图。编译器是g++,平台是linux x86-64,链接器是gfortran

C++ 代码使用 -fno-omit-frame-pointer 编译。oprofile 以 --callgraph=25 开头。报告我使用 --callgraph 运行。

调用图已生成,但它只包括自我时间,没有多大用处

我错过了什么?

4

1 回答 1

2

检查是否opcontrol --status没有

Call-graph depth: 0

在它的输出中。如果是,请停止分析,执行opcontrol --callgraph=<desired call stack depth>并重新启动分析。

于 2011-08-23T08:06:45.833 回答