From be3a70b6c2ec7a41799615c0a3d60ad65950e3e6 Mon Sep 17 00:00:00 2001 From: Marc Mattmueller Date: Thu, 29 Jul 2021 21:41:06 +0200 Subject: [PATCH] local.conf: set parallel threads back to 4 (due to 2 jobs in parallel) it is possible that two build jobs run on the same build server (e.g. mmc- and a ramdisk job). Thus 8 parallel threads are slowing the build more down than speeding it up. Signed-off-by: Marc Mattmueller --- build-fct/conf/local.conf | 4 ++-- build-minimal/conf/local.conf | 4 ++-- build/conf/local.conf | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/build-fct/conf/local.conf b/build-fct/conf/local.conf index 5123324..7a69a5c 100644 --- a/build-fct/conf/local.conf +++ b/build-fct/conf/local.conf @@ -1,5 +1,5 @@ -BB_NUMBER_THREADS ?= "8" -PARALLEL_MAKE ?= "-j 8" +BB_NUMBER_THREADS ?= "4" +PARALLEL_MAKE ?= "-j 4" PACKAGE_CLASSES ?= "package_rpm" USER_CLASSES ?= "buildstats image-mklibs image-prelink" PATCHRESOLVE = "noop" diff --git a/build-minimal/conf/local.conf b/build-minimal/conf/local.conf index 5123324..7a69a5c 100644 --- a/build-minimal/conf/local.conf +++ b/build-minimal/conf/local.conf @@ -1,5 +1,5 @@ -BB_NUMBER_THREADS ?= "8" -PARALLEL_MAKE ?= "-j 8" +BB_NUMBER_THREADS ?= "4" +PARALLEL_MAKE ?= "-j 4" PACKAGE_CLASSES ?= "package_rpm" USER_CLASSES ?= "buildstats image-mklibs image-prelink" PATCHRESOLVE = "noop" diff --git a/build/conf/local.conf b/build/conf/local.conf index 5123324..7a69a5c 100644 --- a/build/conf/local.conf +++ b/build/conf/local.conf @@ -1,5 +1,5 @@ -BB_NUMBER_THREADS ?= "8" -PARALLEL_MAKE ?= "-j 8" +BB_NUMBER_THREADS ?= "4" +PARALLEL_MAKE ?= "-j 4" PACKAGE_CLASSES ?= "package_rpm" USER_CLASSES ?= "buildstats image-mklibs image-prelink" PATCHRESOLVE = "noop"