阻止 eclipse CDT 从 main() 进行调试?
如果我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在菜单上运行->调试配置,右键单击左侧的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.