From 8e1c25fdb1db6ecb498fb05855f789ed2f684512 Mon Sep 17 00:00:00 2001 From: EndrII Date: Tue, 22 Feb 2022 18:36:52 +0300 Subject: [PATCH] fix parallel thread count --- BuildBotLib/cmake.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BuildBotLib/cmake.py b/BuildBotLib/cmake.py index 13e86d6..1659435 100644 --- a/BuildBotLib/cmake.py +++ b/BuildBotLib/cmake.py @@ -21,7 +21,7 @@ class CMake(Make): if len(target): command += ' --target ' + target else: - command += ' --parallel' + command += ' --parallel 4' cxx = [] if cxxFlags is not None: