diff options
| author | hathach <[email protected]> | 2020-04-06 20:39:20 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2020-04-06 20:39:20 +0700 |
| commit | a344427e3f27b04744778241f235262b42a8d003 (patch) | |
| tree | ccdfd60219b288577b28cead9426a0c541c6623c /tools/build_all.py | |
| parent | 9d26666c9177653be431b02f5262405ee39f3f59 (diff) | |
fix CROSS_COMPILE for esp32s2
Diffstat (limited to 'tools/build_all.py')
| -rw-r--r-- | tools/build_all.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/build_all.py b/tools/build_all.py index 325e671fd..ba918425a 100644 --- a/tools/build_all.py +++ b/tools/build_all.py @@ -58,7 +58,7 @@ def skip_example(example, board): mk_contents = mk.read() # Skip ESP32-S2 board if example is not FreeRTOS one - if 'freertos' not in example and 'CROSS_COMPILE = xtensa-esp32-elf-' in mk_contents: + if 'freertos' not in example and 'CROSS_COMPILE = xtensa-esp32s2-elf-' in mk_contents: return 1 # Skip if CFG_TUSB_MCU in board.mk to match skip file |
