我已经安装了 gperftools-2.0,但我无法获取 cpu 配置文件统计信息
以下是我获取统计信息的步骤:
- 安装 gperftools tar -xzvfj gperftools-2.0.tar.gz
2.编辑cpp文件test.cpp
#include <stdio.h>
#include <gperftools/profiler.h>
int main()
{
ProfilerStart("test.prof");
for (int i = 0; i<100; i++)
{
printf("hello world!");
}
ProfilerStop();
return 0;
}
编译 g++ test.cpp -o test -O0 -I/usr/local/include/ -L/usr/local/lib/ -lprofiler
运行 ./test
报告 pprof ./test --text test.prof
其输出为:使用本地文件 ./test。使用本地文件 test.prof。
我的步骤有什么问题?