Module containing this breakpoint has not yet loaded or the breakpoint adress could not be obtained.
在用vscode调试时,设置断点然后调试,发现程序直接全速执行,并没有在断点处停下,然后提示Module containing this breakpoint has not yet loaded or the breakpoint adress could not be obtained.原因是因为没有编译成debug版本,这时候要在makefile中增加-g选项,如果使用的是cmake,要在c
·
在用vscode调试时,设置断点然后调试,发现程序直接全速执行,并没有在断点处停下,然后提示
Module containing this breakpoint has not yet loaded or the breakpoint adress could not be obtained.
搜索到如下回答
原因是因为没有编译成debug版本,这时候要在makefile中增加-g选项,如果使用的是cmake,要在cmakelist里面增加如下定义。
add_definitions("-Wall -g")
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献16条内容
所有评论(0)