汇编
在使用 gcov 之前,应使用两个标志 -fprofile-arcs
和 -ftest-coverage
使用 gcc 编译源代码。这告诉编译器生成 gcov 所需的信息和额外的目标文件代码。
gcc -fprofile-arcs -ftest-coverage hello.c
链接还应该使用 -fprofile-arcs
标志。
在使用 gcov 之前,应使用两个标志 -fprofile-arcs
和 -ftest-coverage
使用 gcc 编译源代码。这告诉编译器生成 gcov 所需的信息和额外的目标文件代码。
gcc -fprofile-arcs -ftest-coverage hello.c
链接还应该使用 -fprofile-arcs
标志。