使用 gdb 列出加载的模块
有没有办法使用 gdb 列出所有加载的模块,就像 Windbg 一样,自动显示所有加载的模块。如果没有一个词的答案也没关系,如果有人能给我指点,我会很乐意自己解决问题。
Is there a way to list all the loaded modules using gdb, just like Windbg, that automatically shows all the loaded modules. Its okay if there is no one word answer, I'll be happy to work things out myself if someone could please provide me a pointer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
i sh
大致<=> WinDbg 中的lm
或x *!
i sh
roughly <=>lm
orx *!
in WinDbg命令行中的ldd
会告诉你你需要什么吗?实际上,从这个想法开始。尝试
我分享
。参见http://book.opensourceproject.org.cn/embedded/ Embeddedprime/opensource/0136130550/ch15lev1sec3.html。Doesldd
from the command line tell you what you need?Actually, scratch that idea. Try
i shared
. See http://book.opensourceproject.org.cn/embedded/embeddedprime/opensource/0136130550/ch15lev1sec3.html.如果您使用的是 Windows,并且只想查看加载的内容,则可以使用 进程浏览器。从列表中选择进程,然后从菜单中选择查看 -> 进程。下窗格视图 -> DLL。下方窗格将显示该进程使用的所有 DLL。
If you are working on Windows, and you just want to see what was loaded, you can use Process Explorer. Select the process from the list, and from the menu, select View -> Lower Pane View -> DLLs. The lower pane will then show all the DLLs used by that process.