如何让我的 gcc -pg 创建 gmon.out 文件而不是 a.out?我正在尝试使用 gprof 分析我的 CPU,但是当我编译 .c 文件时,我得到一个 a.out,这不是我需要的。
配置文件是在运行已编译的程序时生成的,而不是在编译时生成的。
$ gcc -pg yourfile.c #compile with -pg $ ./a.out #execute it
现在,您可以看到
gmon.out