7

我在我的 Ubuntu 10.04 主机(我正在使用 Buildroot)上使用以下命令和 Linaro 工具链为 ARM 交叉编译 Valgrind(http://valgrind.org/downloads/valgrind-3.8.1.tar.bz2):

export PATH=$PATH:/home/user/toolchain/linaro/bin
CC=arm-linux-gnueabi-gcc CFLAGS=-I/home/user/toolchain/linaro/arm-linux-gnueabi/libc/usr/include LDFLAGS=-L/home/user/toolchain/linaro/arm-linux-gnueabi/libc/usr/lib ./configure --prefix=/opt/valgrind --host=armv7-none-linux-gnueabi --target=arm-none-linux-gnueabi --build=i386-ubuntu-linux
make
sudo make install

当我将二进制文件复制到我的 ARM 目标板时,我收到以下错误:

==413== Memcheck, a memory error detector
==413== Copyright (C) 2002-2012, and GNU GPL'd, by Julian Seward et al.
==413== Using Valgrind-3.8.1 and LibVEX; rerun with -h for copyright info
==413== Command: /home/user/testApp
==413== 

valgrind:  Fatal error at startup: a function redirection
valgrind:  which is mandatory for this platform-tool combination
valgrind:  cannot be set up.  Details of the redirection are:
valgrind:  
valgrind:  A must-be-redirected function
valgrind:  whose name matches the pattern:      memcpy
valgrind:  in an object with soname matching:   ld-linux.so.3
valgrind:  was not found whilst processing
valgrind:  symbols from the object with soname: ld-linux.so.3
valgrind:  
valgrind:  Possible fixes: (1, short term): install glibc's debuginfo
valgrind:  package on this machine.  (2, longer term): ask the packagers
valgrind:  for your Linux distribution to please in future ship a non-
valgrind:  stripped ld.so (or whatever the dynamic linker .so is called)
valgrind:  that exports the above-named function using the standard
valgrind:  calling conventions for this platform.  The package you need
valgrind:  to install for fix (1) is called
valgrind:  
valgrind:    On Debian, Ubuntu:                 libc6-dbg
valgrind:    On SuSE, openSuSE, Fedora, RHEL:   glibc-debuginfo
valgrind:  
valgrind:  Cannot continue -- exiting now.  Sorry.

我的 Linaro 工具链版本是:

gcc version 4.7.1 20120402 (prerelease) (crosstool-NG linaro-1.13.1-2012.04-20120426 - Linaro GCC 2012.04) 

我在谷歌上搜索过,但找不到解决方案。如何让 Valgrind 在我的目标板上工作?我使用 Buildroot 来构建我的系统,但 libc6-dbg 不是我可以在构建系统中找到的包。我需要从工具链 sysroot 复制一些目录或文件吗?谢谢 -

我用来运行 Valgrind 的命令如下所示:

# which valgrind
/usr/bin/valgrind
# valgrind /home/user/MyQtApp
==216== Memcheck, a memory error detector
...
...
4

4 回答 4

5

所以你正在使用 Buildroot 或 OpenEmbedded 来构建你的 Libc?

如果它是 OE,那么您应该在本地存储库 (TMPDIR/deploy/ipk) 中有可用的 libc6-dbg 包。或者将“dbg-pkgs”添加到 IMAGE_FEATURES 中并重建您的图像。

Glibc 2.12 显示您使用的是旧版本的 OpenEmbedded。但即使这样也应该给你 libc6-dbg 包。

无法帮助 Buildroot,因为从未使用过它。

于 2012-12-03T10:52:49.543 回答
5

我一直面临同样的问题,并找到了解决方案。因此,如果有人也面临它,这就是我使事情发生的方式: Valgrind 无法调试应用程序的原因是 C 库中缺少符号。在使用外部工具链 (Linaro) 构建 buildroot 时,我们可以在 Linaro 树中找到未剥离的 C 库。在 arm-linux-gnueabihf\libc\lib\arm-linux-gnueabihf 文件夹中,您将找到未剥离的库。只需复制目标上的非剥离文件..就是这样。希望这对其他人有帮助。

于 2016-04-07T09:28:40.353 回答
1

您需要在目标中未剥离的库。

2种方法来做到这一点。

在您的 buildroot 配置中:

1- 制作一个未剥离的系统:BR2_STRIP_none=y 它将制作一个非常大的目标图像

2- 仅取消剥离 librairie 文件夹。BR2_STRIP_EXCLUDE_DIRS="lib"

于 2013-02-12T17:51:38.500 回答
0

对不起,我给你一个我自己没有使用的包的链接,但希望它会起作用:

https://launchpad.net/ubuntu-leb/oneiric/armel/libc6-dbg

于 2012-11-16T15:10:14.773 回答