C源程序到可执行文件的四个过程

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/C++,c++,gcc)