如何使用 gdb 单步执行 #define 语句

发布于 12-10 06:33 字数 349 浏览 0 评论 0原文

我正在使用 gcc 编译器。我正在编写的代码经常涉及在单个 #define 指令中编写大量语句。例如以下内容:

#include<stdio.h>    
#define DO_RR(x) do { \
for(i=0;i<x; i++) \
    printf("%d", i); \
}while(0);

int main() {
  int i=0;
  DO_RR(5)
  return 0;
}

现在我希望能够单步执行 DO_RR 中的语句。但是,当我尝试它时,控件直接从 main 中的 DO_RR 语句跳转到下一个语句,并且不单步执行。是否有办法实现在预处理器块内进行单步执行?

I am using gcc compiler. I am working on a code that frequently involves writing chunks of statements inside a single #define directive. For example the following :

#include<stdio.h>    
#define DO_RR(x) do { \
for(i=0;i<x; i++) \
    printf("%d", i); \
}while(0);

int main() {
  int i=0;
  DO_RR(5)
  return 0;
}

Now I want to be able to single step through the statements in DO_RR. However when I try it, the control jumps directly from DO_RR statement in main to the next statement and does not single step. Is there anyway to achieve stepping inside the preprocessor blocks ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

冷夜2024-12-17 06:33:44

你不能,#defines 由预处理器扩展并且不存在于代码中。

You cannot, #defines are expanded by the preprocessor and are not present in the code.

执笔绘流年2024-12-17 06:33:44

为了补充@Angelom的答案,您可以通过使用函数来解决这个问题。将#define 中的任何代码移至函数中,这样您就可以单步执行函数调用。

理想情况下,而且大多数情况下,您可以将整个 #define 替换为内联函数。

To supplement @Angelom's answer, you can workaround this by using functions. Move whatever code you can from the #define into a function, and you will be able to step through the function call.

Ideally, and most often, you can replace the entire #define with an inline function.

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