使用gcc的-E -P選項展開原始碼中的巨集
阿新 • • 發佈:2018-12-13
原文:http://journeyboy.bokee.com/614292.html
內容簡介:演示如何將C程式碼中的巨集展開。
使用工具:gcc
測試平臺:cygwin
任務描述:檔案header1.h中描述了巨集的宣告,檔案header2.h中使用到了這些巨集,現在需要將檔案header2.h中的巨集展開,生成檔案shit.h。
關鍵字:gcc cygwin macro #define expand precompile
檔案1"header1.h",內容如下:
#define A1 10
#define A2 0x0A
#define A3 (A1+1)
檔案2"header2.h",內容如下:
#include "header1.h"
typedef struct st_Shit
{
int m1[A1];
int m2[A2];
char m3[A3];
}t_Shit;
使用如下命令:
gcc -E -P -<header2.h> shit.h
或
gcc -E -P -o shit.h header2.h
header2.h中的巨集展開之後,生成shit.h檔案,內容如下:
typedef struct st_Shit { int m1[10]; int m2[0x0A]; char m3[(10 +1)]; }t_Shit;
如果不使用-P開關,命令如下:
gcc -E -<header2.h> shit.h
或
gcc -E -o shit.h header2.h
header2.h中的巨集展開之後,生成shit.h檔案,內容如下:
# 1 "<stdin>" # 1 "<built-in>" # 1 "<command-line>" # 1 "<stdin>" # 1 "header1.h" 1 # 3 "<stdin>" 2 typedef struct st_Shit { int m1[10]; int m2[0x0A]; char m3[(10 +1)]; }t_Shit;
可見,-P選項能夠遮蔽掉這些垃圾內容。