编译器编译的四个过程


GCC编译分布
预编译:gcc -E -o index.i index.c
编译:gcc -S -o index.s index.i
汇编:gcc -c -o index.o index.s
链接:gcc  index.o -o index

相关文章: