文章目录
- 1、概要
- 2、debug模式调试
- 3、遇到问题
- 3.1、Unable to create a debugging engine
- 3.2、The selected debugger may be inappropriate for theinferior.......
1、概要
使用QT软件进入debug模式进行调试,再次期间遇到了一些问题,对应解决方案如下所示:
2、debug模式调试
1、打开QT,选择"debug"模式;
2、单机“斧头图标”,重新构建程序;
3、单机“虫标识”,进入debug调试模式,代码中直接打断点即可;
4、“F5”,根据断点进行调试,“F10”逐步调试;
3、遇到问题
***参考文献:***
https://blog.csdn.net/qq_30684181/article/details/88408228
https://blog.csdn.net/weixin_45827115/article/details/132895818
3.1、Unable to create a debugging engine
1)、问题:选择debug模式进行调试,应用程序输出“Unable to create a debugging engine”
2)、原因:第一次安装QT的时候,没有配置Debug功能;
** 3)、解决方法**:(1)、控制面板---》程序--》卸载程序;(2)、选中“Windows Software Development Kit -Windows 10.0.17763.132”---》右键“更改”;(3)、选择“change”--->"next";(4)、选择“Debugging Tools for Windows”--->"change"(5)、电脑重启;
3.2、The selected debugger may be inappropriate for theinferior…
** 1)、问题**:The selected debugger may be inappropriate for theinferior.
Examining symbols and setting breakpoints by file nameand line number may fail.
The inferior is in the Portable Executable format.Selecting CDB as debugger would improve the debuggingexperience for this binary format.
** 2)、原因**:未配置对应debug模式下的编译工具;
** 3)、解决方法**:(1)、QT软件菜单栏---》工具---》选项---》Kits---》debuggers;(2)、查看debuggers模型下是否已经安装adb.exe工具;(如果没有请自行安装);(3)、Kits模式下---》选中当前使用的模式(一般为默认)----》下面的debug模式勾选当前的adb.exe工具;