diff options
| author | Ha Thach <[email protected]> | 2025-11-29 01:41:30 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-11-29 01:41:30 +0700 |
| commit | 7ee288bc223db393d68c7bdb09bf7c05ffd2eb03 (patch) | |
| tree | 0c706cb41224eceee1870535fd8de74d3798bb7b /tools | |
| parent | 583fe844e9e007a3a87c301c057c5128a8f249e0 (diff) | |
change armgcc setup to manual download due to issue with action (#3377)
* change armgcc setup to manual download due to issue with action
* build windows, macos with cmake as well
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/get_deps.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/get_deps.py b/tools/get_deps.py index 35f3b3e92..d749e4c84 100755 --- a/tools/get_deps.py +++ b/tools/get_deps.py @@ -246,7 +246,7 @@ deps_optional = { 'imxrt kinetis_k32l2 kinetis_kl lpc51 lpc54 lpc55 mcx mm32 msp432e4 nrf saml2x ' 'lpc11 lpc13 lpc15 lpc17 lpc18 lpc40 lpc43 ' 'stm32c0 stm32f0 stm32f1 stm32f2 stm32f3 stm32f4 stm32f7 stm32g0 stm32g4 stm32h5 ' - 'stm32h7 stm32h7rs stm32l0 stm32l1 stm32l4 stm32l5 stm32u0 stm32u5 stm32wb stm32wba' + 'stm32h7 stm32h7rs stm32l0 stm32l1 stm32l4 stm32l5 stm32u0 stm32u5 stm32wb stm32wba ' 'sam3x samd11 samd21 samd51 samd5x_e5x same5x same7x saml2x samg ' 'tm4c '], 'lib/CMSIS_6': ['https://github.com/ARM-software/CMSIS_6.git', @@ -343,7 +343,7 @@ def main(): for f in families: for d in deps_optional: - if d not in deps and f in deps_optional[d][2]: + if d not in deps and f in deps_optional[d][2].split(): deps.append(d) if print_only: |
