Hacker News new | ask | show | jobs
by delinka 3819 days ago
It's not the linking process that make -j speeds up, but the optimization part.
1 comments

AFAIK the bulk of link time optimization happens in the linker. The parallelizable compiler invocations just store extra information in the object files.

The linker invocation is a single make job, which is the unit of make -j parallelism.