您的位置:首页 > 编程语言 > Qt开发

qt-opensource-windows-x86-vs2010-4.8.6 + qt-creator-windows-opensource-2.8.0

2015-11-05 00:56 591 查看
1.下载qt-opensource-windows-x86-vs2010-4.8.6.exe

网址如下:
https://download.qt.io/archive/qt/4.8/4.8.6/qt-opensource-windows-x86-vs2010-4.8.6.exe
下完找个地方安即可

2.下载qt-creator-windows-opensource-2.8.0

网址如下:
https://download.qt.io/official_releases/qtcreator/2.8/2.8.0/qt-creator-windows-opensource-2.8.0.exe
下完找个地方安

这里先大概说下 creator 和 qt库之间的关系 

creator就是个IDE,里面是空架子,没有编译器,调试器等,这些都得自己去填充

而QT库就是它自己的一个图形库什么的

所以光有这些还不够

你电脑上还得有自己的编译器和调试器

编译器的话,我们这里用VS2010里面自己带的

调试器的话,VS2010也有,不过是Windbg,我们需要cdb

什么区别?

WinDbg, NTSD, CDB, and KD all share the same debugging engine, so they share all the same commands. The only differences between them is that WinDbg has GUI interface, NTSD, CDB and KD have console interfaces, NTSD and CDB only support user mode debugging,
KD only supports kernel mode, while WinDbg supports both.

那么我们需要下载cdb

3.下载cdb

下载2010的对应的CDB,下载网址:
http://www.microsoft.com/en-us/download/confirmation.aspx?id=11800
然后解压安装,选择仅仅安装debug tool

如果是2012的话,去这个网站下载,http://msdn.microsoft.com/en-US/windows/hardware/gg463009/,沿用上面的网址进去下载 WDK 8,这个对应的VS 2012 for win 7)

如果对这步不清楚请看:http://blog.csdn.net/ztz0223/article/details/8936478

4.开始配置creator



内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: