【发布时间】:2018-09-02 17:35:01
【问题描述】:
当我在 gcc 上使用选项 -save-temps 编译代码时,存储预处理输出的结果 filename.i 具有如下行:
#44 "/usr/include/stdio.h" 3 4
struct _IO_FILE;
其中44 是/usr/include/stdio.h 中包含代码struct _IO_FILE; 的行号。我想知道标题名称后的3 4 是什么。我搜索了man gcc,但没有找到解释。
【问题讨论】:
-
我推荐the online documentation存储库。
标签: c gcc c-preprocessor