海湾合作委员会汇编输出
我想查看一段特定代码的汇编输出,与 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要
intel
语法。我相信它是通过EDIT
实现的。当然,您也可以使用
objdump
来实现:You want
intel
syntax. I believe it's achieved withEDIT
Of course, you can also use
objdump
for this: