阻止 eclipse CDT 从 main() 进行调试?

发布于 2024-11-02 22:27:49 字数 165 浏览 2 评论 0原文

如果我使用 eclipse CDT 调试我的 C++ 代码,它似乎总是从 main() 函数启动调试过程,即使 main() 开头没有断点

有没有办法让 Eclipse CDT 从第一个断点而不是 main() 开始调试?

If I debug my C++ code using eclipse CDT, it appears that it always starts the debugging process from the main() function, even though there is no breakpoint at the beginning of the main().

Is there a way to have eclipse CDT start to debug from the first breakpoint rather than main()?

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

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

发布评论

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

评论(2

诗化ㄋ丶相逢 2024-11-09 22:27:49

在菜单上运行->调试配置,右键单击左侧的C/C++应用程序项,创建新建配置。转到“调试器”选项卡并取消选中启动时停止复选框。

On the menu Run -> Debug Configurations, right click the C/C++ Applications item on the left, and create New configuration. Go to the Debugger tab and uncheck the Stop on startup at checkbox.

草莓酥 2024-11-09 22:27:49
  1. 打开“调试配置”GUI
  2. 选择您的应用程序
  3. 选择“调试器”选项卡
  4. 取消选中“在主启动时停止”

在此处输入图像描述

  1. Open "Debug Configurations" GUI
  2. Choose your application
  3. Select "Debugger" tab
  4. Uncheck "Stop on startup at main"

enter image description here

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