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 for a multi-core CPU)?

Many thanks.

link|improve this question
Will it really help? All my compile jobs are I/O bound rather than CPU bound. – Brian Knoblauch Jan 6 '09 at 13:28
Even if they are I/O bound you can probably keep the I/O load higher when the CPU heavy bits are happening (with just one g++ instance there will be lulls) and possibly gain I/O efficiencies if the scheduler has more choice about what to read from disk next. My experience has been that judicious use of make -j almost always results in some improvement. – awoodland Aug 22 '11 at 9:35
feedback

6 Answers

up vote 41 down vote accepted

You can do this with make - with gnu make it is the -j flag (this will also help on a uniprocessor machine).

For example if you want 4 parallel jobs from make:

make -j 4

You can also run gcc in a pipe with

gcc -pipe

This will pipeline the compile stages, which will also help keep the cores busy.

If you have additional machines available too, you might check out distcc, which will farm compiles out to those as well.

link|improve this answer
2  
You're -j number should be 1.5x the number of cores you have. – Mark Beckwith Jan 6 '09 at 17:47
yes, something like that makes sense given there is I/O as well - although may need some tuning if using -pipe as well – frankodwyer Jan 6 '09 at 21:12
feedback

There is no such flag, and having one runs against the Unix philosophy of having each tool perform just one function and perform it well. Spawning compiler processes is conceptually the job of the build system. What you are probably looking for is the -j (jobs) flag to GNU make, a la

make -j4

Or you can use pmake or similar parallel make systems.

link|improve this answer
feedback

People have mentioned make but bjam also supports a similar concept. Using bjam -jx instructs bjam to build up to x concurrent commands.

We use the same build scripts on Windows and Linux and using this option halves our build times on both platforms. Nice.

link|improve this answer
feedback

make will do this for you. Investigate the -j and -l switches in the man page. I don't think g++ is parallelizable.

link|improve this answer
feedback

I'm not sure about g++, but if you're using GNU Make then "make -j N" (where N is the number of threads make can create) will allow make to run multple g++ jobs at the same time (so long as the files do not depend on each other).

link|improve this answer
feedback

distcc can also be used to distribute compiles not only on the current machine, but also on other machines in a farm that have distcc installed.

link|improve this answer
+1, distcc is a useful tool to have in one's arsenal for large builds. – awoodland Aug 22 '11 at 9:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.