Is there any way to make software builds / compilation faster ? We have a build tree c, c++ using makefile that takes close to 2Hrs for fresh builds. I came across few commercial solutions like ElectricAccelerator, Sparkbuild, are there any opensource equivalent ?
|
|
A search on google might help in getting list of open source softwares.
|
|||||||||
|
|
|
In our company we had lots of product that has longer build time like 3-6 hours. There are 2 techniques we used.
|
|||||
|
|
One way is to simply run the build on faster hardware. I realize that this isn't always an option, but it's still something to consider. As @Martin mentions, some specific sub-systems to upgrade include using as fast a disk as you can, like an SSD, adding more RAM, a faster CPU (and more cores, if your compiler can use them), and making sure the files being built are all local to the build machine (not on the network). You should also give the build process as much of this resource pool as possible, so strip off all non-build-related processes and applications from the build machine. This will reduce any resource contention. |
|||||||||||||||
|
|
We use a combination of
Turning off optimizations will tend to produce faster builds, if you have that option. If you already use a parallel build architecture and it's still slow, you may just need to study it. Watch its progress with a stopwatch and see where it bottlenecks. Look for "long poles" that perhaps you didn't expect. Good luck. |
||||
|
|
