linux下用gcc如何生成预处理、汇编等文件

【gcc -E test.c -o test.i------>预处理文件生成.i 文件。】html 一、c语言程序生成过程 C语言程序的生成过程能够简单的分为:编辑、预处理、编译、汇编、连接五个阶断。 下面全部的操做以hello world程序为例,源码文件命名为t.c,源码内容以下: #include <stdio.h>  int main() { printf("hello world\n")
相关文章
相关标签/搜索