Are there any products that will decrease c++ build times? that can be used with msvc?
|
|
|||||
|
|
|
If it has to be a product, look at Xoreax IncrediBuild, which distributes the build to machines on the network. Other than that:
|
|||
|
|
|
|
Usage of precompiled headers might decrease your compile time. |
||
|
|
|
Have you considered a shared build server? MSVC will run in a Terminal Server, and you can amortize the cost of CPUs, RAM and fast disks over the development team. As a side benefit, this Terminal Server can then also house the Version Control System, so checkouts are fast. |
||
|
|
|
|
Look at MPCL. This is a plug-in for Microsoft Visual C++ 2005 and Visual C++2008, which allow to maximize the use of the CPU in order to minimize the compiling time of your project. It compiles several .c / .cpp files of the same project in parallel in order to achieve it. This is specially usefull when you have a Dual core / Quad core / Multi core processor. |
||
|
