From af845b7de26254d0e45fd60d727a26e9046b37e2 Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Tue, 22 Dec 2020 19:51:37 +1100 Subject: [PATCH] xtensa: Disable component on esp32c3 --- components/xtensa/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/components/xtensa/CMakeLists.txt b/components/xtensa/CMakeLists.txt index 8e59467673..3fa959a936 100644 --- a/components/xtensa/CMakeLists.txt +++ b/components/xtensa/CMakeLists.txt @@ -1,5 +1,7 @@ idf_build_get_property(target IDF_TARGET) - +if(${target} STREQUAL "esp32c3") + return() +endif() if(BOOTLOADER_BUILD) # bootloader only needs headers from this component set(priv_requires soc)