海湾合作委员会汇编输出

发布于 2024-11-06 23:49:11 字数 87 浏览 1 评论 0原文

我想查看一段特定代码的汇编输出,与 AT&T 语法相比,我通常更喜欢阅读 nasm 语法。有没有一种方便的方法从 gcc 获取 nasm 汇编格式输出?

I'm wanting to look at the assembly output from a particular piece of code and generally I prefer reading nasm syntax compared to AT&T syntax. Is there a convenient way to get nasm assembly format output from gcc?

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

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

发布评论

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

评论(1

计㈡愣 2024-11-13 23:49:11

您需要 intel 语法。我相信它是通过

-masm=intel

EDIT

实现的。当然,您也可以使用 objdump 来实现:

objdump -M intel -d <binary>

You want intel syntax. I believe it's achieved with

-masm=intel

EDIT

Of course, you can also use objdump for this:

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