diff options
| author | hathach <[email protected]> | 2023-03-24 14:02:09 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2023-03-24 14:05:21 +0700 |
| commit | 71fb6469d4997347f2014daa41839391cc070a74 (patch) | |
| tree | 02f5dfdb186c6f70f35d1618999f374dbf94775f /tools/build_utils.py | |
| parent | 7440782afb8841332005000aa72241300ddccd53 (diff) | |
separate CFG_TUSB_MEM_SECTION and CFG_TUSB_MEM_ALIGN to
- CFG_TUD_MEM_SECTION and CFG_TUD_MEM_ALIGN
- CFG_TUH_MEM_SECTION and CFG_TUH_MEM_ALIGN
- fix missing mem section and align for host
Diffstat (limited to 'tools/build_utils.py')
| -rw-r--r-- | tools/build_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/build_utils.py b/tools/build_utils.py index d0ef52717..905d06a86 100644 --- a/tools/build_utils.py +++ b/tools/build_utils.py @@ -93,7 +93,7 @@ def build_example(example, board, make_option): ret[2] = 1 print(build_format.format(example, board, status, '-', flash_size, sram_size)) else: - subprocess.run(make_cmd + " clean", shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + #subprocess.run(make_cmd + " clean", shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) build_result = subprocess.run(make_cmd + " all", shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) if build_result.returncode == 0: |
