MAKEOPTS

MAKEOPTS is Article description::a variable that defines how many parallel make jobs can be launched from Portage. It can be set in the /etc/portage/make.conf configuration file.

The parallel jobs entry ensures that, when make is invoked, it knows how many parallel sessions it is allowed to trigger (when parallel sessions are possible of course). This is completely within the scope of that make command and has no influence on parallel installations (which is triggered through emerge with --jobs=X option). The recommended value is the number of logical processors in the CPU.

On a system with one Intel Core i7 CPU the following command shows the numbering of the available logical CPUs.

root #lscpu
Architecture:        x86_64
CPU op-mode(s):      32-bit, 64-bit
Byte Order:          Little Endian
CPU(s):              8
On-line CPU(s) list: 0-8
Thread(s) per core:  2
Core(s) per socket:  4
Socket(s):           1

In this example 8 logical CPUs are available, 4 physical cores each with 2 threads, hence one can set the MAKEOPTS variable to:

FILE /etc/portage/make.conf
<syntaxhighlight lang="bash">MAKEOPTS="-j8"</syntaxhighlight>

Another item to consider is RAM usage. Recent gcc versions have been known to take 1 GB to 1.5 GB of RAM per job. If the system has the 8 logical CPUs from the previous example, but only 4 GB RAM, the MAKEOPTS value should be lowered to -j3. This is so that the system has RAM to run the basics as well as compile without hitting swap very often slowing things down.

For example, to measure the time needed to compile the package app-misc/mc with 4 threads one can run:

root #time MAKEOPTS="-j4" emerge app-misc/mc

External resources

This article is issued from Gentoo. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.