We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76da10a commit 8016448Copy full SHA for 8016448
components/coap/CMakeLists.txt
@@ -29,3 +29,5 @@ register_component()
29
# TODO: find a way to move this to a port header
30
target_compile_definitions(${COMPONENT_TARGET} PUBLIC WITH_POSIX)
31
32
+# Silence format truncation warning, until it is fixed upstream
33
+set_source_files_properties(libcoap/src/coap_debug.c PROPERTIES COMPILE_FLAGS -Wno-format-truncation)
components/coap/component.mk
@@ -10,3 +10,5 @@ COMPONENT_SRCDIRS := libcoap/src libcoap port
10
11
COMPONENT_SUBMODULES += libcoap
12
13
14
+libcoap/src/coap_debug.o: CFLAGS += -Wno-format-truncation
0 commit comments