1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-19 22:35:12 +03:00

Compilation will be a little bit quicker

This commit is contained in:
Bertrand Songis 2020-03-19 22:16:18 +01:00
parent a4d9305d65
commit ae2f848fa3
No known key found for this signature in database
GPG key ID: F189F79290FEC50F

View file

@ -41,7 +41,7 @@ def build_target(target, path, cmake_options):
return COMPILATION_ERROR return COMPILATION_ERROR
# Launch make # Launch make
cmd = ["make", "-j2", target] cmd = ["make", "-j3", target]
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
output, error = proc.communicate() output, error = proc.communicate()
if proc.returncode == 0: if proc.returncode == 0: