如何在 Windows XP 中使用MinGW重新编译Qt Creator ?
2 回答
我将从阅读README开始,在其中你会发现:
编译 Qt Creator
您需要 Qt 4.6 来构建 Qt Creator。
我们建议您不要在源目录中构建 Qt Creator,而是在单独的目录中。
为此,请使用以下命令:
mkdir $BUILD_DIRECTORY
cd $BUILD_DIRECTORY
qmake $SOURCE_DIRECTORY/qtcreator.pro
make(或mingw32-make或 nmake,取决于您的平台)
A Very simple way is to have in hand a pre-compile version of Qt Creator (even Previous Verion) and open the profile file.
If your development kit is set to minGW, that is you have ensure that: - Qmake from the required version of Qt is identified in Qt identification - Gcc path is set correctly) then the existing version of Qt Creator will be used to do the build automatically. Do not forgot eventually to do a off site build (enabling shadow build).
Regards