C源程序到可执行文件的四个过程
1.预处理
gcc -E -hello.c -o hello.i
2.编译
gcc -S -hello.i -o hello.s
3.汇编
gcc -c hello.s -o hello.o
4.链接
gcc hello.o -o hello
C源程序到可执行文件的四个过程
1.预处理
gcc -E -hello.c -o hello.i
2.编译
gcc -S -hello.i -o hello.s
3.汇编
gcc -c hello.s -o hello.o
4.链接
gcc hello.o -o hello