From 1c81beb4225a354b6a78813471e0272744ae397e Mon Sep 17 00:00:00 2001 From: Balakrishnan Balasubramanian Date: Fri, 13 Mar 2026 21:38:17 -0400 Subject: [PATCH] add makeflags to enable parallel compilation --- makepkg.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/makepkg.conf b/makepkg.conf index 83b6b49..709e14f 100644 --- a/makepkg.conf +++ b/makepkg.conf @@ -14,3 +14,5 @@ if [ "${SKIP_NATIVE-n}" = n ]; then CFLAGS="$CFLAGS -march=native -mtune=native" CXXFLAGS="$CFLAGS -Wp,-D_GLIBCXX_ASSERTIONS" fi + +MAKEFLAGS="--jobs=$(nproc)"