This is Gentoo's testing wiki. It is a non-operational environment and its textual content is outdated.

Please visit our production wiki at https://wiki.gentoo.org

MAKEOPTS

From Gentoo Wiki (test)
Jump to:navigation Jump to:search

The MAKEOPTS variable content as defined in /etc/portage/make.conf is passed on to the make jobs launched from Portage and is most often used to allow parallel jobs.

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 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
MAKEOPTS="-j8"

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