vote up 5 vote down star
1

Ever since I learned about -j I've used -j8 blithely. The other day I was compiling an atlas installation and the make failed. Eventually I tracked it down to things being made out of order - and it worked fine once I went back to singlethreaded make. This makes me nervous. What sort of conditions do I need to watch for when writing my own make files to avoid doing something unexpected with make -j?

flag

1  
Are you sure it's make's fault? Writing correct makefiles is error-prone. – Kinopiko Oct 14 at 4:38
Meh, even makefiles generated by autotools are buggy. Try compiling GCC with -j2 or up. – LiraNuna Oct 14 at 4:46

3 Answers

vote up 6 vote down check

I think make -j will respect the dependencies you specify in your Makefile; i.e. if you specify that objA depends on objB and objC, then make won't start working on objA until objB and objC are complete.

Most likely your Makefile isn't specifying the necessary order of operations strictly enough, and it's just luck that it happens to work for you in the single-threaded case.

link|flag
That's correct. I work on a code base of about 20 million lines, mostly in C with a little C++. It's split into hundreds of components, about half of which use make, and half of which use jam. I always do parallel compiles with the -j option; otherwise, builds would take hours. Jam generates its own dependencies, so the components that use it always succeed. But components that use hand-built makefiles choke on occasion, invariably due to inadequate dependencies. – Bob Murphy Oct 14 at 5:36
vote up 3 vote down

If you have a recursive make, things can break pretty easily. If you're not doing a recursive make, then as long as your dependencies are correct and complete, you shouldn't run into any problems (save for a bug in make). See Recursive Make Considered Harmful for a much more thorough description of the problems with recursive make.

link|flag
vote up 5 vote down

In short - make sure that your dependencies are correct and complete.

If you are using a single threaded make then you can be blindly ignoring implicit dependencies between targets. When using parallel make you can't rely on the implicit dependencies. They should all be made explicit. This is probably the most common trap. Particularly if using .phony targets as dependencies.

This link is a good primer on some of the issues with parallel make.

link|flag
+1 For the good link. I now feel like i can trust make -j too and how to fix problems when they arise. Well worth reading. – Shhnap Oct 14 at 4:51

Your Answer

Get an OpenID
or

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