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: e.g. 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: