1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-01 10:52:19 +01:00

Bump ESP32 IDF version to 5.4.2 and Arduino version to 3.2.1 (#9770)

This commit is contained in:
Jonathan Swoboda
2025-07-22 19:15:31 -04:00
committed by GitHub
parent 5a4e2a3eaf
commit 116c91e9c5
7 changed files with 24 additions and 16 deletions

View File

@@ -105,7 +105,7 @@ def clang_options(idedata):
# idedata contains include directories for all toolchains of this platform, only use those from the one in use
toolchain_dir = os.path.normpath(f"{idedata['cxx_path']}/../../")
for directory in idedata["includes"]["toolchain"]:
if directory.startswith(toolchain_dir):
if directory.startswith(toolchain_dir) and "picolibc" not in directory:
cmd.extend(["-isystem", directory])
# add library include directories using -isystem to suppress their errors