1:源程序hello.c
gcc -E hello.c -o hello.i
2:预处理后hello.i
gcc -S hello.i -o hello.s
3:汇编后hello.s
gcc -c hello.s -o hello.o
4:编译后hello.o
gcc hello.o -o hello
5:链接后hello
源代码:
- #include <stdio.h>
-
-
int
-
main(int argc, char **argv)
-
{
-
printf("hello world\n");
-
-
return 0;
-
}
阅读(1420) | 评论(0) | 转发(0) |