Вопрос

Is there a way to set make to always do 8 jobs simultaneously, akin to 'make -j 8', but in a permanent way, even between restarts of the computer?

Some environment variable, perhaps? I'm using Ubuntu.

Это было полезно?

Решение

You can try the $(MAKEFLAGS) variable:

export MAKEFLAGS=j8

But read the caveats and suggestions here.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top