Windows 中的 objdump 和 Dumpbin 有什么区别?
看起来它们都可以转储二进制文件的内容,
那么有什么区别呢?
It seems both of them can dump the contents of a binary file,
then what's the difference?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有太大区别。
Dumpbin 是 Microsoft 的一个用于可移植可执行文件 (PE) 的实用程序。
Objdump 是 GNU binutils 软件包的一部分,支持许多二进制格式,包括 COFF 和 PE。
使用您喜欢的任何一个。我使用 objdump 因为我可以从 Linux 检查 PE 文件。我建议使用您系统上安装的那个:Windows 上为 Dumpbin,其余系统上为 Objdump。
Dumpbin 可能会给您在探索导出的符号和内容方面带来一些优势。
There isn't much difference.
Dumpbin is a Microsoft utility for Portable Executables (PE).
Objdump is part of the GNU binutils packages and supports lots of binary formats, including COFF and PE.
Use whichever you prefer. I use objdump because I can inspect PE files from Linux. I'd say use the one that's installed on your system: Dumpbin on Windows, Objdump on the rest.
Dumpbin might give you a slight edge concerning exploring exported symbols and stuff.