Product to reduce C ++ compilation time?

Are there any products that will reduce C ++ build time? which can be used with msvc?

+3
source share
4 answers

If it should be a product, check out Xoreax IncrediBuild , which distributes the assembly to machines on the network.

Besides:

  • solid state machines. RAM, as it fits, use fast separate disks.
  • Separation into separate projects (DLLs, libraries). They can build in parallel, too (use a double quadrant / core, and it is easy to smooth over the disk)
  • , . , . PIMPL .
+13

.

+6

MPCL.

Microsoft Visual ++ 2005 Visual ++ 2008, , .

.c/.cpp . , // .

+2

? MSVC , , . , .

0

Source: https://habr.com/ru/post/1702232/


All Articles