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.
This commit is contained in:
parent
e107b941a1
commit
6c0fb9cdf1
2
PKGBUILD
2
PKGBUILD
@ -361,7 +361,7 @@ build() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$_force_all_threads" = "true" ]; then
|
if [ "$_force_all_threads" = "true" ]; then
|
||||||
_force_all_threads="-j$((`nproc`*2))"
|
_force_all_threads="-j$((`nproc`+1))"
|
||||||
else
|
else
|
||||||
_force_all_threads="${MAKEFLAGS}"
|
_force_all_threads="${MAKEFLAGS}"
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user