标签:技术 frame pre include pil ret info div turn
hello.c
#include <stdio.h>
int main()
{
printf("hello, world!\n");
return 0;
}
$ gcc -E hello.c -o hello.i
$ gcc -E -P hello.c -o hello.i
$ gcc -S hello.i -o hello.s
$ gcc -c hello.s -o hello.o
$ gcc hello.o -o hello
标签:技术 frame pre include pil ret info div turn
原文地址:https://www.cnblogs.com/typescript/p/11478937.html