gcc中预编译、编译、汇编、链接
一、预编译
操作步骤:gcc -E test.c -o test.i
作用:处理关于 “#” 的指令
(1)删除#define,展开所有宏定义。例#define portnumber 3333
(2)处理条件预编译 #if, #ifde
gcc中预编译、编译、汇编、链接
一、预编译
操作步骤:gcc -E test.c -o test.i
作用:处理关于 “#” 的指令
(1)删除#define,展开所有宏定义。例#define portnumber 3333
(2)处理条件预编译 #if, #ifde