标签:style blog http io ar color os sp 文件
直入正题,测试编译代码如下:
1 lude <stdio.h> 2 3 int main() 4 { 5 int x=2,y,z; 6 x*=(y=z=5); 7 printf("%d\n",x); 8 z=3; 9 x==(y=z); 10 printf("%d\n",x); 11 x=(y==z); 12 printf("%d\n",x); 13 x=(y&z); 14 printf("%d\n",x); 15 x=(y&&z); 16 printf("%d\n",x); 17 y=4; 18 x=(y|z); 19 printf("%d\n",x); 20 x=(y||z); 21 printf("%d\n",x); 22 23 24 return 0; 25 }
1.预处理:指令-E
gcc -E test.c -o test.i
2.编译为汇编代码:指令-S
gcc -S test.i -o test.s
3.汇编:指令 -c
gcc -c test.s -o test.o
4.链接
gcc test.o -o test
上面是单个文件编译,如果多文件编译如下 :
gcc test1.c test2.c -o test
相当于:
gcc -c test1.c test1.o
gcc -c test2.c test2.o
gcc test1.o test2.o -o test
标签:style blog http io ar color os sp 文件
原文地址:http://www.cnblogs.com/ltlly/p/4123308.html