As duas opções disponíveis para make
são:
-
-j8
: esta opção especifica o número de trabalhos a serem executados simultaneamente. Nas páginasmake
man:-j [jobs], --jobs[=jobs] Specifies the number of jobs (commands) to run simultaneously. If there is more than one -j option, the last one is effective. If the -j option is given with- out an argument, make will not limit the number of jobs that can run simultaneously.
-
V=99
: esta opção controla o grau e o tipo de detalhamento a que você será exposto durante o processomake
. Isso não é específico paramake
em si, mas sim para oOpenWrt
makefile. Na fonte, veja o arquivoinclude/verbose.mk
onde os seguintes links são feitos:- Verbose = V - Verbosity level 1 = w (warnings/errors only) - Verbosity level 99 = s (This gives stdout+stderr)
Referências: