如何使用 gcc 生成 Intel 语法的汇编代码?
gcc -S
选项将生成 AT&T 语法的汇编代码,有没有办法生成 Intel 语法的文件? 或者有没有办法在两者之间进行转换?
The gcc -S
option will generate assembly code in AT&T syntax, is there a way to generate files in Intel syntax? Or is there a way to convert between the two?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用
-masm=intel
适用于 GCC、Clang 3.5 及更高版本。 GCC 手册:
对于 macOS,请注意,默认情况下,
gcc
命令实际上运行 Clang,除非您安装了实际的 GCC(例如来自 Brew)。 现代 clang 支持-masm=intel
作为其同义词,但这始终适用于 clang :请注意,直到 clang 14,这不会改变 clang 内联处理的方式
asm()
语句,与 GCC 不同。这些是 Matt Godbolt 的编译器资源管理器站点默认使用的选项:https://godbolt.org/
另请参阅 如何从 GCC/clang 程序集输出中删除“噪音” ? 获取有趣的 asm 输出的其他选项和技巧。
Use
-masm=intel
That works with GCC, and Clang 3.5 and later. GCC manual:
For macOS, note that by default, the
gcc
command actually runs Clang unless you've installed actual GCC (e.g. from Brew). Modern clang supports-masm=intel
as a synonym for this, but this always works with clang:Note that until clang 14, this does not change how clang processes inline
asm()
statements, unlike for GCC.These are the options used by Matt Godbolt's Compiler Explorer site by default: https://godbolt.org/
See also How to remove "noise" from GCC/clang assembly output? for other options and tips for getting asm output that's interesting to look at.
这
确实适合我。 但我可以用另一种方式告诉你,尽管这与运行 gcc 无关。
编译可执行文件或目标代码文件,然后使用 objdump 以 Intel asm 语法反汇编目标代码,如下所示:
这可能会有所帮助。
The
Does work with me. But i can tell another way, although this has nothing to do with running gcc.
Compile the executable or the object code file and then disassemble the object code in Intel asm syntax with objdump as below:
This might help.
我在 CPP 文件中有这段代码:
这是与此 GCC 命令行配合使用的代码:
它将生成 *.exe 文件,并且根据我的经验,它有效。
就这样。
I have this code in CPP file:
That's code worked with this GCC command line:
It will result *.exe file, and it worked in my experience.
That's all.