From 4bb894e747cccb6142040b10bc598fe30c07b92a Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Fri, 12 Jan 2024 08:54:06 -0300 Subject: etc/sh/rc: Use 9 threads on $MAKEFLAGS After all, we're IO bound in velhinho. --- etc/sh/rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'etc') diff --git a/etc/sh/rc b/etc/sh/rc index 2ac08cb..6398360 100644 --- a/etc/sh/rc +++ b/etc/sh/rc @@ -113,7 +113,7 @@ export TG_API_ID TG_API_HASH NPROC="$(nproc)" export NPROC GUILE_EFFECTIVE_VERSION="$(guile -c '(display (effective-version))')" -export MAKEFLAGS="-j $NPROC" +export MAKEFLAGS="-j $(($(nproc) * 2 + 1))" export GOPATH="$SRC/go" export VG_FLAGS=' --show-error-list=yes -- cgit v1.2.3