调试原生 Android 代码
我正在使用 Sequoyah 在 Eclipse 下调试 Android 上的本机代码。如果库是使用 NDK 构建的并且位于项目的文件夹中,则它可以正常工作。但有一些库是在另一台机器上构建的。我有它的源代码、目标文件和库是可调试的,但 gdb 找不到源路径。有什么想法吗?
I'm using Sequoyah to debug native code on Android under eclipse. It works fine if libraries were built with NDK and were located in the project's folder. But there are some libs which were built on another machine. I have its sources, object files and libs are debuggable, but gdb couldn't find sources paths. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在 gdb 中设置路径替换。
You can set up path substitution in gdb.
我明白了!在 Eclipse 中,转到“调试配置”、“源”选项卡并添加“路径映射”。在此表中,您可以将编译路径映射到当前路径。
I've got it! In eclipse go to Debug Configurations, Source tab and add Path Mapping. In this table you could map compile paths to current paths.