1
0
mirror of https://github.com/esphome/esphome.git synced 2025-04-06 19:00:29 +01:00

[CI] Clang tidy fixes for 5.3.2 (#8510)

Co-authored-by: Keith Burzinski <kbx81x@gmail.com>
This commit is contained in:
Jonathan Swoboda 2025-04-03 03:32:17 -04:00 committed by GitHub
parent ef0f969604
commit 219ba6152c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -36,6 +36,7 @@ def clang_options(idedata):
# clang doesn't support Xtensa (yet?), so compile in 32-bit mode and pretend we're the Xtensa compiler
cmd.append("-m32")
cmd.append("-D__XTENSA__")
cmd.append("-D_LIBC")
else:
cmd.append(f"--target={triplet}")
@ -79,6 +80,7 @@ def clang_options(idedata):
"-fstrict-volatile-bitfields",
"-mlongcalls",
"-mtext-section-literals",
"-mdisable-hardware-atomics",
"-mfix-esp32-psram-cache-issue",
"-mfix-esp32-psram-cache-strategy=memw",
"-fno-tree-switch-conversion",