Fast Qt C++ compile on windows
I have a large project that uses the Qt framework and am trying to find the fastest way to compile it on my Windows install.
On my linux machine at home I use 3 year old Linux Mint setup with a dual core (the machine is 3 years old not Linux Mint install), using: make -j2 both cores are used full(ish) and compiles the code relatively quick, around 10 minutes from clean build.
However on my work Windows PC which is 2.0 GHz Intel Core 2 Quad (XP) I can never seem to get the compiles to be as fast as my Linux box. The developer docs for the program recommend using Visual Studio C++ using the project file generated from cmake but that only seems to use one core and takes well over a hour to compile vs about 10 minutes (from clean build) on my Linux install.
I have tred using jom but even when using all the cores it still takes around an hour and half because it only seems to use small amounts of cpu on each core.
Doesn't make sense to me that my old Linux machine builds quick but the quad core just slumps along.
The following have helped the speed of our Windows C++ Qt builds, over the years:
Our Windows builds are still slower than Linux ones, but I can't say that's a fair comparison, as our shared Linux build box is a much higher spec than developer PCs.
(As an aside, if you haven't seen them before, it's worth reading what Jeff Atwood has to say about good configurations for developer PCs: eg the Programmer's Bill of Rights)
Update: 25/10/2012
If you are on Visual Studio 2008, with DLL builds, I do not currently recommend moving to Visual Studio 2010 : there is an issue with unnecessary re-linking of dependent projects that absolutely kills developer productivity, at least in a .sln with 20 or so .vcxproj files:
There may be a solution to this - I'll update later, once I've tested it - see Unnecessary relinks of dependent projects when building with Visual Studio 2010 where CORCOR said:
If others have a similar problem:
Turning off the manifestation creation for the DLL projects and turning it on only for the application project helps!
With VS2008 this seemed to be no problem.
This might be a bit of a workaround, but we use Incredibuild, which distributes the build across multiple machines, which works really well. Cuts down our build times from 40 to 10 minutes. (we have 6 developer PCs hooked up to share the workload)
Visual Studio can compile several projects in parallel, but each single project is compiled sequentially. So if you compile a solution with 2 projects then two processes will be launched in parallel, but if you have just one project then just one process will start and it will compile your source sequentially.
If you use MingW, you can follow this thread: http://www.mail-archive.com/qt-creator@trolltech.com/msg00156.html
There you will find the solution (install MSys and specify the parameter -j when you launch make in order to specify the number of parallel jobs).
An even easier solution is here: http://developer.qt.nokia.com/forums/viewthread/855/ (in QtCreator Tools->Options specify Jom as build tool instead of NMake)
链接地址: http://www.djcxy.com/p/85462.html上一篇: 如何提高Delphi编译速度?
下一篇: 在Windows上快速Qt C ++编译