Does "CONCURRENCY_LEVEL=x" variable affects to compilations made with make?
Asked
Active
Viewed 2,233 times
2 Answers
11
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
Oli
- 293,335
3
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"
Treviño
- 2,584