summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorHa Thach <[email protected]>2020-07-19 13:24:57 +0700
committerGitHub <[email protected]>2020-07-19 13:24:57 +0700
commit798fad397a15e28eb536bd2334e24a5b862d329a (patch)
tree03ede455e8057a8c9a81bbda3a07eea3eaca7ff4 /tools
parent2274740e48a73e1888657ed6d505db19a6c252e1 (diff)
parent8e1290e51e9d036959930dd6ea89a6ef8b517ac0 (diff)
Merge pull request #464 from hathach/improve-highspeed
Better support highspeed mode
Diffstat (limited to 'tools')
-rw-r--r--tools/build_all.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/build_all.py b/tools/build_all.py
index 25cdc9778..af57cdd5c 100644
--- a/tools/build_all.py
+++ b/tools/build_all.py
@@ -38,7 +38,7 @@ all_boards.sort()
def build_example(example, board):
subprocess.run("make -C examples/device/{} BOARD={} clean".format(example, board), shell=True,
stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
- return subprocess.run("make -j 4 -C examples/device/{} BOARD={} all".format(example, board), shell=True,
+ return subprocess.run("make -j -C examples/device/{} BOARD={} all".format(example, board), shell=True,
stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
def build_size(example, board):