C编译器中的调试模式编译标志有标准吗?
标准规范 (ANSI/C89/C99) 是否有任何预定义标志用于 C 编译器中的调试模式编译?
我知道 DEBUG
和 NDEBUG
标志,但我不确定它们是否符合 C 标准。
Is there any pre-defined flag by standard specification (ANSI/C89/C99) for debug-mode-compilation in C compiler?
I know DEBUG
and NDEBUG
flags, but I am not sure about whether they're in the C standard or not.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这实际上取决于您所说的“调试模式编译”。对于不同的人来说,它可能意味着很多不同的事情:
assert
函数NDEBUG
仅控制项目符号 #3。当然它经常与其他的结合使用,因为一起使用它们是有意义的。但没有什么会强迫您使用所有这些 - 您可以定义这些东西的各种组合,例如带有断言检查的优化构建等。That really depends on what you call - "debug mode compilation". It can mean lots of different things to different people:
assert
functionThe
NDEBUG
controls the bullet #3 only. Of course it is often combined with others, because it makes sense to use them together. But nothing forces you to use all of them - you may define various combinations of these things, e.g. optimized build with assert checks, etc.否——标准中使用是否定义了 NDEBUG 来确定
assert
扩展为什么,但没有说明是什么导致它被定义。至少在我的记忆中,根本没有任何名为DEBUG
的东西。No -- whether
NDEBUG
is defined or not is used in the standard to determine whatassert
expands to, but there's nothing about what causes it to be defined. At least to my recollection, there's nothing about anything namedDEBUG
at all.