summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorhathach <[email protected]>2020-03-25 14:06:51 +0700
committerhathach <[email protected]>2020-03-25 14:06:51 +0700
commitd74a92bf4596d229a3176fab2f91c45eabff6d3a (patch)
treee148e4ce88c328b56f4c50f97f2bc77584d48b49 /tools
parent435485b524f7d5299f489b34555a0c9d5f616159 (diff)
makefile clean up
allow board to define CROSS_COMPILE (default to arm gcc)
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 08964bb76..0437bcaac 100644
--- a/tools/build_all.py
+++ b/tools/build_all.py
@@ -88,7 +88,7 @@ for example in all_examples:
fail_count += 1
build_duration = time.monotonic() - start_time
- print(build_format.format(example, board, success, "{:.2f}".format(build_duration), flash_size, sram_size))
+ print(build_format.format(example, board, success, "{:.2f}s".format(build_duration), flash_size, sram_size))
if build_result.returncode != 0:
print(build_result.stdout.decode("utf-8"))