gcc编译全过程

gcc编译全过程

在这里插入图片描述

gcc test.c -E -o test.i #预处理

gcc test.i -S -o test.s #转变为汇编语言

gcc test.s -s -o test.o # 转变为二进制可执行文件

猜你喜欢

转载自blog.csdn.net/qq_44861043/article/details/121249791