From 6c0fb9cdf15ae4d287cf8938ba7f79f1abb33b4b Mon Sep 17 00:00:00 2001 From: Tk-Glitch Date: Tue, 27 Oct 2020 00:17:41 +0100 Subject: [PATCH] Move back to using nproc +1 for _force_all_threads instead of nproc *2. The 5.6 issue was fixed a while ago and really slow CPUs can choke on *2 while doing interactive tasks. --- PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKGBUILD b/PKGBUILD index 7b38182..8d80edf 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -361,7 +361,7 @@ build() { fi if [ "$_force_all_threads" = "true" ]; then - _force_all_threads="-j$((`nproc`*2))" + _force_all_threads="-j$((`nproc`+1))" else _force_all_threads="${MAKEFLAGS}" fi