2

我已经按照“Documentation/gcov.txt”所说的做了。

mime的基本介绍:

$ uname -a
Linux turf.ivor 3.9.5 #1 SMP Fri Jun 14 00:51:05 CST 2013 x86_64 x86_64 x86_64 GNU/Linux

$ cat /etc/redhat-release
Fedora release 18 (Spherical Cow)

$ zcat /proc/config.gz | egrep "GCOV_|DEBUG_FS"

CONFIG_GCOV_KERNEL=y
CONFIG_GCOV_PROFILE_ALL=y
CONFIG_DEBUG_FS=y

$ mount | grep debugfs
debugfs on /sys/kernel/debug type debugfs (rw,relatime)

# ls -la /sys/kernel/debug/gcov/ 
total 0
drwxr-xr-x  2 root root 0 Jun 14  2013 .
drwx------ 17 root root 0 Jun 14  2013 ..
-rw-------  1 root root 0 Jun 14  2013 reset

我只找到了一个重置​​文件(一个空文件)。

正如“文件”所说:

 90 4. Files
 91 ========
 92                                                                                
 93 The gcov kernel support creates the following files in debugfs:
 94 
 95         /sys/kernel/debug/gcov
 96                 Parent directory for all gcov-related files.
 97 
 98         /sys/kernel/debug/gcov/reset
 99                 Global reset file: resets all coverage data to zero when
100                 written to.
101 
102         /sys/kernel/debug/gcov/path/to/compile/dir/file.gcda
103                 The actual gcov data file as understood by the gcov
104                 tool. Resets file coverage data to zero when written to.
105 
106         /sys/kernel/debug/gcov/path/to/compile/dir/file.gcno
107                 Symbolic link to a static data file required by the gcov
108                 tool. This file is generated by gcc when compiling with
109                 option -ftest-coverage.

我应该怎么办?

gcov 是否仍支持最新的 linux 版本?

任何建议,谢谢。

`

4

5 回答 5

1

问题可能是 gcc。一些较新的版本不再生成 .ctors 选项,而是使用 .init_array。您可以通过对启用了 gcov 的内核对象之一执行 objdump -dr -j .ctors 来确认这一点。如果它返回没有找到这样的部分,请尝试 .init_array。

我现在正在解决这个问题,试图了解在 init/main.c 的 do_ctors 调用中用 .init_array 替换 .ctors 的奥秘。这不像在 vmlinux.lds.h 中交换节名那么简单

抱歉,这还不是答案。

于 2013-06-20T19:58:51.617 回答
1

在 vmlinux.lds.h 文件中进行以下更改以在 vmlinux 文件的 .ctors 部分添加 .init_array ,它将起作用:-

在此处输入图像描述

谢谢

于 2015-12-14T10:41:10.987 回答
0

对于 3.7 或 3.8 以上的新内核版本,您必须是 sudo 用户才能获取 gcda 文件。

sudo su

现在进入目录/sys/kernel/debug/gcov/

您将看到构建的 linux 代码路径。

于 2013-07-24T14:04:00.920 回答
0

内核中未启用对 ARM 的 GCOV 支持。请参考以下 URL,将 2 个补丁应用到您的内核,您将能够在目标上看到 gcov 文件

https://groups.google.com/forum/#!topic/linux.kernel/JsvylFnag-Y

于 2013-07-18T10:32:39.337 回答
0

我遇到了同样的问题,我认为 gcc 是罪魁祸首。当我的 gcc 版本低于 4.7 时,一切似乎都很顺利。否则像你一样的问题就出来了。

为什么?

greebo52 的答案就是答案。

怎么解决?

您可以在 4.7 下使用 gcc 或编译自己的 gcc 4.7。当你配置 gcc 4.7 时,添加这个 --disable-initfini-array。像这样:

./configure --disable-initfini-array ...(其他选项)

于 2013-08-28T07:46:44.820 回答