pvtrace c/c++函数调用关系生成工具
为了生成函数调用图,您需要 4 个元素:GNU 编译器工具链、pvtrace、instrument.c 和 Graphviz。 pvtrace 解压后make->make install instrument.c 在pvtrce包里面 Graphviz是开源工具自己下载 使用范例: 1: $ ls 2: instrument.c test.c 3: $ $ gcc -g -finstrument-functions test.c instrument.c -o test 4: $ ./test 5: $ ls 6: instrument.c test.c