Makefile 学习C语言的编译过程预处理(Preprocessing)-E是让编译器在预处理之后就退出,不进行后续编译过程;-o是指定输出文件名。
gcc -E hello.c -o hello.i
编译(Compilation)
这里
2024-01-21