我有一个 make 选项指定为
gcc -fprofile-arcs -ftest-coverage -fPIC -fprofile-dir="./build" test.c -o build/test.out
使用上述选项,gcda
文件被移动到构建目录,但不是gcno
文件......
我们如何将 gcno 文件移动到 build 文件夹?
我有一个 make 选项指定为
gcc -fprofile-arcs -ftest-coverage -fPIC -fprofile-dir="./build" test.c -o build/test.out
使用上述选项,gcda
文件被移动到构建目录,但不是gcno
文件......
我们如何将 gcno 文件移动到 build 文件夹?