标签:
1 //test.c 2 #include <stdio.h> 3 int main() 4 { 5 printf("Hello World!\n"); 6 return 0; 7 }
gcc test.c -o test
./test
gcc -E test.c -o test.i
gcc -S test.i -o test.s
gcc -c test.s -o test.o
gcc test.o -o test
./test
标签:
原文地址:http://www.cnblogs.com/s5plus1/p/5560812.html