From ae2f848fa37eb5e392b53be4acc9f44c7405af19 Mon Sep 17 00:00:00 2001 From: Bertrand Songis Date: Thu, 19 Mar 2020 22:16:18 +0100 Subject: [PATCH] Compilation will be a little bit quicker --- radio/util/build-firmware.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radio/util/build-firmware.py b/radio/util/build-firmware.py index e54b5058e..8d85d542c 100755 --- a/radio/util/build-firmware.py +++ b/radio/util/build-firmware.py @@ -41,7 +41,7 @@ def build_target(target, path, cmake_options): return COMPILATION_ERROR # Launch make - cmd = ["make", "-j2", target] + cmd = ["make", "-j3", target] proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) output, error = proc.communicate() if proc.returncode == 0: