Since I am compiling my C++ code on a very server box (32 or 64 cores in total), is there a way of tweaking compiler options to speed up the compilation times? E.g. to tell compiler to compile independent .cpp files using multiple threads.
|
feedback
|
|
Sun Studio includes parallel build support in the included | ||||
feedback
|
|
This depends on what toolchain you're using. If you're using GNU Make, then add | |||
|
feedback
|
|
Use something like Boost JAM which does this sort of multithreading for you - and from my experience much more efficiently than multi-threaded make. | |||
|
feedback
|
|
Sun's C++ compiler also has an | |||
|
feedback
|