Eclipse CDT - gdb 监视表达式
我一直在尝试使用 eclipse CDT 来调试我的 C 代码。我发现与 gdb 不同的是,当添加监视表达式时,程序不会在值更改(写入)时中断。我还尝试使用运行选项中的“切换断点”,它显示“该选项不可用”。我有什么遗漏的吗?
提前致谢
I have been trying to use eclipse CDT to debug my C code. I see that unlike what gdb does, when a watch expression is added, the program does not break when the value changes(write). I also tried using "toggle breakpoints" from run option, it says "The option is unavailable." Is there something I am missing?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要的是
观察点
而不是观察表达式
。尝试用谷歌搜索一下。用法因您的特定 Eclipse 版本而异。
What you need is
watchpoint
s instead ofwatch expression
s.Try Googling that. Usage varies with your specific Eclipse version.