博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
the CDB process terminated
阅读量:4112 次
发布时间:2019-05-25

本文共 360 字,大约阅读时间需要 1 分钟。

在调试qt的时候,出现了the CDB process terminated 。

首先,要确定qt creator的配置是对的。

1、qt的环境变量的设置

2、在qt creator 中的工具 -> 选项 ->构建和运行,要确定这些选项配置对。

1)安装windbgd 32位,64位的安装

2)qt 版本的设置

3)Kit 页面的设置

3 这个时候再调试程序的时候,还是出现the CDB process terminated 。这个时候,需要去构建这个项目,打开这个项目生成exe文件的目录,执行。

我这边的问题是发现缺少ucrtbased.dll库文件。

可以从以下链接找到详解。

https://www.cnblogs.com/findumars/p/6110973.html

把库文件添加到对应的目录,就可以了

你可能感兴趣的文章
启动 LocalDB 和连接到 LocalDB
查看>>
Palindrome Number --回文整数
查看>>
Reverse Integer--反转整数
查看>>
Container With Most Water --装最多水的容器(重)
查看>>
Longest Common Prefix -最长公共前缀
查看>>
Letter Combinations of a Phone Number
查看>>
Single Number II --出现一次的数(重)
查看>>
Valid Parentheses --括号匹配
查看>>
Generate Parentheses--生成匹配括号(重)
查看>>
Remove Element--原地移除重复元素
查看>>
Remove Duplicates from Sorted Array--从有序数组中移除重复元素
查看>>
Count and Say
查看>>
Gas Station
查看>>
Palindrome Partitioning --回文切割 深搜(重重)
查看>>
Valid Palindrome 简单的回文判断
查看>>
Pascal's Triangle -- 生成杨辉三角
查看>>
Pascal's Triangle II 生成杨辉三角中的某行
查看>>
Minimum Depth of Binary Tree -- 二叉树的最小深度 DFS 加剪枝
查看>>
Climbing Stairs 爬楼梯方法 动态规划
查看>>
Merge Two Sorted Lists 合并两个有序链表
查看>>