Hi.
I have this in my make.conf for simultaneous emerge:
Code: Select all
MAKEOPTS="-j38 -l36"
EMERGE_DEFAULT_OPTS="--jobs=36 --load-average=36"
FEATURES="distcc webrsync-gpg"
With these lines, I make portage build up to 36 packages at the same time. But, in order to build the next 36 packages the former 36 packages need to finish building. Let's say sys-devel/gcc is among these 36 packages. gcc will most likely take the longest time to build. In the end, portage waits for gcc to finish in order to start building the next 36 packages. How do I make portage start building the next package as soon as one package finishes building? I don't want portage to finish the first 36 package in order to start building the next 36 packages.