1.3.2 编译
接下来GCC对hello.i进行编译,命令如下:
$gcc –S hello.i –o hello.s
编译后产生的汇编文件hello.s内容如下:
.file "hello.c"
.section .rodata
.LC0:
.string "Hello World!"
.text
.globl main
.type main, @function
main:
pushl