Windows 中的 objdump 和 Dumpbin 有什么区别?

发布于 2024-09-24 03:52:24 字数 44 浏览 1 评论 0原文

看起来它们都可以转储二进制文件的内容,

那么有什么区别呢?

It seems both of them can dump the contents of a binary file,

then what's the difference?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

荭秂 2024-10-01 03:52:24

没有太大区别。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文