From 5c41edb863f2a8d43f6af84c4758ab738e468121 Mon Sep 17 00:00:00 2001 From: Alexey Lapshin Date: Tue, 18 Jul 2023 13:40:20 +0400 Subject: [PATCH] fix(tools): fix panic test gcc 13.1.0 warnings --- tools/test_apps/system/panic/main/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/test_apps/system/panic/main/CMakeLists.txt b/tools/test_apps/system/panic/main/CMakeLists.txt index dea3633295..cdbffba4a4 100644 --- a/tools/test_apps/system/panic/main/CMakeLists.txt +++ b/tools/test_apps/system/panic/main/CMakeLists.txt @@ -17,4 +17,5 @@ idf_component_register(SRCS "${srcs}" PRIV_REQUIRES esp_gdbstub) target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-unused-variable" - "-Wno-infinite-recursion") + "-Wno-infinite-recursion" + "-Wno-array-bounds")