解决codeblocks无法调试的问题

错误提示:ERROR: You need to specify a debugger program in the debuggers's settings.
(For MinGW compilers, it's 'gdb.exe' (without the quotes))

(For MSVC compilers, it's 'cdb.exe' (without the quotes))

解决方案:

有些下载的codeblocks没有自带MinGW,没法编译,当你自己下载一个MinGW,你安装好了,可能不会带有gdb.exe文件。

1.点击Settings,选择Debugger选项

2.点击Default,选择Executable path,选择一个gdb.exe的文件,这个文件就在安装MinGW的文件夹的bin里面

3.如果没有这个gdb.exe文件,你就在这个网站下面下载一个,http://www.equation.com/servlet/equation.cmd?fa=gdb

4.下载好的gdb.exe复制到你的安装MinGW的文件夹的bin里面,就可以进行调试了

5.有些编译环境是有中文这些的不能编译,要选择新建的项目才可以编译哦

本文转载自(https://blog.csdn.net/uestc_c2_403/article/details/78914222)

你可能感兴趣的:(问题解决)