本文主要是介绍【异常错误】CodeBlocks无法调试 Starting the debuggee failed: No executable specified, use `target exec‘,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
今天使用CodeBlocks调试的时候发现异常,控制台报错:
Starting the debuggee failed: No executable specified, use 'target exec'
经过查阅资料,了解了codeblocks调试时出错的一些原因,有如下注意事项。
-
必须建立工程
-
工程名不可有空格或特殊字符,可以有字母、数字、下划线(最好不要包含中文)
-
编译器设置里勾选-g(产生调试符号)
-
重新编译项目(如果之前编译过了)
-
调试器设置 > Default > 设置可执行路径为: (安装路径)\CodeBlocks\MinGW\bin\gdb.exe
这篇关于【异常错误】CodeBlocks无法调试 Starting the debuggee failed: No executable specified, use `target exec‘的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!