Skip to the content.

gcc

最简单用法

gcc hello.c -o hello

gcc分步骤使用

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

gcc -S hello.i -o hello.s   #编译

    gcc -c hello.s -o hello.o #汇编

        gcc hello.o -o hello    #链接

常用的选项

TODO:

gcc中处理目标文件的工具

目标文件的三种:

example c code

#include <stdio.h>

int main(int argc, char const *argv[])
{
	printf("Hello World!\n");
	return 0;
}