問題描述
我想使用 VC++ 工具集為 XP 和 Vista 構建程序,但我不想購買 IDE,因為我想使用 Qt Creator.
I want to use the VC++ toolset to build programs for XP and Vista, but I do not want to buy the IDE, because I want to use Qt Creator.
我會下載 Windows SDK 和 Windows 調試工具,但我不確定這是否包括我需要的一切(即:編譯器、鏈接器、nmake、調試器).有沒有人使用過這種方法?進展如何?
I would download the Windows SDK and the Windows Debugging Tools, but I'm not sure if this includes everything that I need (i.e: compiler, linker, nmake, debuggers). Has anyone used this approach? How did it go?
注意:我知道 VC++ Express,但該版本的編譯器具有禁用 AFAIK 的某些功能.
Note: I know about VC++ Express, but that version of the compiler has certain features disabled AFAIK.
后期
我想知道我是否可以在下載 2GB 數據之前使用 SDK + Debugtools.個人經驗受到高度贊賞.MSDN 鏈接不是.:)
I want to know if I can use the SDK + Debugtools before I download 2GB of data. Personal experiences are highly appreciated. MSDN links are not. :)
推薦答案
我現在使用 CDB + WinSDK 方法并且它有效.
I am now using the CDB + WinSDK approach and it works.
SDK 包含構建 C++ 代碼所需的一切(make、CRT 頭文件、STL 等);Qt 將其視為 MSVC 9.Windows 工具包的調試工具包括 CDB,但請確保您使用的是最新版本,它不適用于我使用舊版本.
The SDK includes everything that is needed for building C++ code (make, CRT headers, STL, etc); Qt sees it a MSVC 9. The Debugging tools for Windows kit includes CDB, but make sure that you're using the latest version, it didn't work for me with older ones.
我設法通過下載 developpez.com 二進制文件來避免編譯 Qt(謝謝大家!).
I managed to avoid compiling Qt by downloading the developpez.com binaries (thanks guys!).
結論:Windows Xp/Vista SDK + Debugger Tools For Windows + Qt Creator +來自 developpez.com 的 Qt 二進制文件可用作 Qt MinGW SDK 的替代品.
In conclusion: Windows Xp/Vista SDK + Debugger Tools For Windows + Qt Creator + Qt binaries from developpez.com can be used as an alternative to the Qt MinGW SDK.
這篇關于Qt Creator 的 VC++ 編譯器的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!