其他分享
首页 > 其他分享> > 【异常错误】CodeBlocks无法调试 Starting the debuggee failed: No executable specified, use `target exec‘

【异常错误】CodeBlocks无法调试 Starting the debuggee failed: No executable specified, use `target exec‘

作者:互联网

今天使用CodeBlocks调试的时候发现异常,控制台报错:
Starting the debuggee failed: No executable specified, use 'target exec'
经过查阅资料,了解了codeblocks调试时出错的一些原因,有如下注意事项。

  1. 必须建立工程

  2. 工程名不可有空格或特殊字符,可以有字母、数字、下划线(最好不要包含中文)

  3. 编译器设置里勾选-g(产生调试符号)

  4. 重新编译项目(如果之前编译过了)

  5. 调试器设置 > Default > 设置可执行路径为: (安装路径)\CodeBlocks\MinGW\bin\gdb.exe

标签:executable,target,No,debuggee,specified,CodeBlocks,调试
来源: https://blog.csdn.net/Supreme7/article/details/114990274