From 4c2c294fad7aa5d9cabb5f0ddaf3fde672cd9061 Mon Sep 17 00:00:00 2001 From: Parker Owen Date: Tue, 22 Apr 2025 22:14:09 -0600 Subject: [PATCH] disable maybe-uninitialized and stringop-overread warnings --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 99b949c..deaf57d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,4 +15,4 @@ idf_component_register(SRCS ${srcs} target_compile_options(${COMPONENT_LIB} PRIVATE -DHAVE_ALLOCA_H -DHAVE_LRINT -DHAVE_LRINTF -DFIXED_POINT -DDISABLE_FLOAT_API -DHAVE_MEMORY_H -DUSE_ALLOCA - -DOPUS_BUILD -O2) \ No newline at end of file + -DOPUS_BUILD -O2 -Wno-error=maybe-uninitialized -Wno-error=stringop-overread) \ No newline at end of file