我使用以下命令在 Centos 上安装了valgrind:

yum install valgrind kcachegrind graphviz

然后,我在我的C++程序中使用了callgrind工具。它生成了自己的callgrind.out.42424文件。

现在,我想使用以下命令在KCacheGrind上打开此文件:
   kcachegrind ./callgrind.out.42424

但是终端说

bash kcachegrind:找不到命令

我不知道为什么在安装此错误时收到此错误。我是否需要在特定目录中才能运行此命令?

最佳答案

sudo yum install kdesdk valgrind graphviz

10-08 11:10