Parallel make: set -j8 as the default option
Your question is not about threads, but processes (jobs) executed by make. The simple, way to set this, when make is used from the console is adding: alias make=”/usr/bin/make -j 8″ to your .profile file. You can also use setenv MAKEFLAGS ‘-j 8’, but MAKEFLAGS can ignore this parameter in some scenarios, because keeping desired … Read more