报错

Debug
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))

原因

  1. 如果你安装的 MinGW compilers 你需要下载 gdb调试工具进行调试。
  2. 如果你安装的MSVC compilers 你需要下载 cdb 调试工具进行调试。

code Blocks debug 错误:ERROR: You need to specify a debugger program in the debuggers's settings.


我安装的是MinGW compilers ,则我需要安装 gdb调试工具:
下载链接:
链接:https://pan.baidu.com/s/1NL6CslvKN8ysS01aSXxLkA
提取码:7wb1

直接找到windows gdb 工具解压缩,进行下面的配置即可:

code Blocks debug 错误:ERROR: You need to specify a debugger program in the debuggers's settings.


调试

具体调试过程有基础的很简单:

调试参考文档 :http://www.docin.com/p-894823578.html

相关文章: