gcc
2018-11-20 本文已影响0人
owl207
*-E 选项
只进行 预处理
gcc hello.c -E
gcc -E hello.c
*-S 选项
进行 预处理 和 编译,生成 xx.s 文件
gcc hello.c -S
gcc -S hello.c
*-c 选项
进行 预处理 、 编译 和 汇编,生成 xx.o 文件
gcc hello.c -c
gcc -c hello.c
*-o 选项
gcc hello.c -o hello
gcc -o hello hello.c