From 988edce74530a585a4ffa40a7d955d0208892539 Mon Sep 17 00:00:00 2001 From: hathach Date: Mon, 9 Dec 2019 18:49:38 +0700 Subject: fix build --- tools/build_all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/build_all.py b/tools/build_all.py index 9f35aac63..2ea898f45 100644 --- a/tools/build_all.py +++ b/tools/build_all.py @@ -36,7 +36,7 @@ for entry in os.scandir("hw/bsp"): 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 8 -C examples/device/{} BOARD={} all".format(example, board), shell=True, + return subprocess.run("make -j 4 -C examples/device/{} BOARD={} all".format(example, board), shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) -- cgit v1.3.1