gprof
OS X での実行に問題があります。ファイルtest.c
は次のとおりです。
#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
。
何が起きてる?