Juan Simón Asked: 2011-01-20 06:43:04 +0800 CST2011-01-20 06:43:04 +0800 CST 2011-01-20 06:43:04 +0800 CST Does "CONCURRENCY_LEVEL=x" affect to all compilations made with make? 772 Does "CONCURRENCY_LEVEL=x" variable affects to compilations made with make? compiling 2 Answers Voted Best Answer Oli 2011-01-20T07:03:20+08:002011-01-20T07:03:20+08:00 No. CONCURRENCY_LEVEL is make-kpkg specific as far as I know. For make, the standard way of doing things is to use the -j (aka jobs) argument: make -j8 Treviño 2012-06-07T05:04:48+08:002012-06-07T05:04:48+08:00 To affect all the make compilations without using the -j option you can specify everything on the MAKEFLAGS environment variable. Something like: export MAKEFLAGS="-j4"
No.
CONCURRENCY_LEVEL
ismake-kpkg
specific as far as I know.For make, the standard way of doing things is to use the
-j
(aka jobs) argument:To affect all the make compilations without using the
-j
option you can specify everything on theMAKEFLAGS
environment variable. Something like: