在目标 PowerPC 机器上安装 Valgrind
我有最新的 Valgrind
源代码。我想在不支持构建任何软件的目标机器(powerpc
)上安装Valgrind
。所以我需要在我的构建机器(x86)上为 powerpc 机器交叉编译 Valgrind
。现在我的问题是如何将交叉编译的 Valgrind
安装到我的目标机器上?
I have the latest Valgrind
source code. I want to install Valgrind
on a target machine(powerpc
) which has no support for building any softwares. So i will need to cross compile Valgrind
on my build machine(x86) for the powerpc machine. Now my question is how to install the cross compiled Valgrind
on to my target machine?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要在 PPC 上使用 valgrind 的默认工具(memcheck),需要的文件为:
交叉编译后,将这些文件复制到同一个目录并在目标上启动
valgrind
,并将VALGRIND_LIB
设置为它们所在的位置。例如,如果所有文件都复制到 /tmp 中,
将使用 valgrind 启动 DEBUGEE。
To use valgrind's default tool(memcheck) on PPC, files needed are:
After cross-compilation, copy these files to the same directory and launch
valgrind
on target withVALGRIND_LIB
set to where they are .For example, if all files were copied into /tmp,
will start DEBUGEE with valgrind.