From cbcc135126e366542edb53567be5d4ececcf3104 Mon Sep 17 00:00:00 2001 From: Arne Fitzenreiter Date: Mon, 18 Dec 2017 16:48:13 +0100 Subject: [PATCH] make.sh: lowering parallel buildprocesses higher values raise the system load but not speedup the build Signed-off-by: Arne Fitzenreiter --- make.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make.sh b/make.sh index dadc87f0ce..781590794c 100755 --- a/make.sh +++ b/make.sh @@ -208,7 +208,7 @@ configure_build() { local mem_max=$(( ${HOST_MEM} / 192 )) local processors="$(system_processors)" - local cpu_max=$(( ${processors} * 2 )) + local cpu_max=$(( ${processors} + 1 )) local parallelism if [ ${mem_max} -lt ${cpu_max} ]; then -- 2.39.5