C编译器中的调试模式编译标志有标准吗?

发布于 2024-11-15 13:45:04 字数 128 浏览 4 评论 0原文

标准规范 (ANSI/C89/C99) 是否有任何预定义标志用于 C 编译器中的调试模式编译?

我知道 DEBUGNDEBUG 标志,但我不确定它们是否符合 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我不会写诗 2024-11-22 13:45:04

这实际上取决于您所说的“调试模式编译”。对于不同的人来说,它可能意味着很多不同的事情:

  1. 没有优化,因此可以更轻松地调试代码
  2. 调试符号生成,再次帮助调试器
  3. 使用使用调试库进行编译的 assert 函数
  4. ,该函数进行额外的运行时检查
  5. 其他自定义调试技术的使用

NDEBUG 仅控制项目符号 #3。当然它经常与其他的结合使用,因为一起使用它们是有意义的。但没有什么会强迫您使用所有这些 - 您可以定义这些东西的各种组合,例如带有断言检查的优化构建等。

That really depends on what you call - "debug mode compilation". It can mean lots of different things to different people:

  1. no optimizations, so code can be more easily debugged
  2. debug symbol generation, again to help debugger
  3. usage of assert function
  4. compiling with debug libraries, that do additional runtime checking
  5. usage of other custom debugging techniques

The 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.

十六岁半 2024-11-22 13:45:04

否——标准中使用是否定义了 NDEBUG 来确定 assert 扩展为什么,但没有说明是什么导致它被定义。至少在我的记忆中,根本没有任何名为 DEBUG 的东西。

No -- whether NDEBUG is defined or not is used in the standard to determine what assert expands to, but there's nothing about what causes it to be defined. At least to my recollection, there's nothing about anything named DEBUG at all.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文