我有在OS X上運行gprof
文件test.c
麻煩主機體系結構的不就是:問題與OS X gprof的:[程序]是
#include <stdio.h>
int main() {
printf("Hello, World!\n");
return 0;
}
和我的終端是這樣的:
$ gcc -pg test.c
$ gcc -pg -o test test.c
$ ./test
Hello, World!
$ gprof test
gprof: file: test is not of the host architecture
編輯:另外,它不生成文件gmon.out
。
這是怎麼回事?
它是否爲您生成的是gmon.out文件?我無法用你的例子來做到這一點。 – 2009-07-09 02:42:50
不,它沒有。我忘了檢查這個。我想這意味着問題開始較早? – 2009-07-09 02:54:16