这是我在Linux上编译的一些代码:
#include <net/if.h> int main() { struct ifreq ifr; }
gcc test.c 很好
gcc test.c
gcc -std=gnu99 test.c 很好
gcc -std=gnu99 test.c
gcc -std=c99 test.c 失败并显示以下错误:
gcc -std=c99 test.c
test.c: In function ‘main’: test.c:4:16: error: storage size of ‘ifr’ isn’t known
不喜欢struct ifreqLinux中C99的定义与C99有何不同?
struct ifreq
这是预处理和GNU C vs C99的一系列后果。
首先,net/if.h:
net/if.h
features.h
#ifdef __USE_MISC
所以:
__USE_MISC
所以现在features.h:
--std=c99
__STRICT_ANSI__
备份至net/if.h:struct ifreq预处理后甚至不存在! 因此,有关存储大小的投诉 。
您可以通过以下方法了解整个故事:
vimdiff <(cpp test.c --std=c99 -dD) <(cpp test.c --std=gnu99 -dD)
或以其他任何方式(例如diff --side-by-side)来区别它们,而不是vimdiff。
diff --side-by-side
vimdiff
如果您希望使用它进行干净地编译-std=c99,则必须考虑包含_DEFAULT_SOURCE功能测试宏(对于glibc版本> = 2.19;对于旧glibc版本,请使用_BSD_SOURCE或_SVID_SOURCE),以便在所提供的功能之上启用所需的功能。 C99。
-std=c99
_DEFAULT_SOURCE
_BSD_SOURCE
_SVID_SOURCE