Quick question: what is the compiler flag to allow g++ to spawn multiple instances of itself in order to compile large projects quicker (for example 4 source files at a time
People have mentioned make but bjam also supports a similar concept. Using bjam -jx instructs bjam to build up to x concurrent commands.
make
bjam -jx
x
We use the same build scripts on Windows and Linux and using this option halves our build times on both platforms. Nice.