mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
fix(spiffs): SPIFFS print formatter errors out
Closes https://github.com/espressif/esp-idf/issues/11922
This commit is contained in:
parent
5a81e00633
commit
abaf997018
@ -1,11 +1,12 @@
|
|||||||
idf_build_get_property(target IDF_TARGET)
|
idf_build_get_property(target IDF_TARGET)
|
||||||
|
|
||||||
list(APPEND srcs "spiffs_api.c"
|
set(original_srcs "spiffs/src/spiffs_cache.c"
|
||||||
"spiffs/src/spiffs_cache.c"
|
"spiffs/src/spiffs_check.c"
|
||||||
"spiffs/src/spiffs_check.c"
|
"spiffs/src/spiffs_gc.c"
|
||||||
"spiffs/src/spiffs_gc.c"
|
"spiffs/src/spiffs_hydrogen.c"
|
||||||
"spiffs/src/spiffs_hydrogen.c"
|
"spiffs/src/spiffs_nucleus.c")
|
||||||
"spiffs/src/spiffs_nucleus.c")
|
|
||||||
|
list(APPEND srcs "spiffs_api.c" ${original_srcs})
|
||||||
|
|
||||||
if(NOT ${target} STREQUAL "linux")
|
if(NOT ${target} STREQUAL "linux")
|
||||||
list(APPEND pr bootloader_support esptool_py vfs)
|
list(APPEND pr bootloader_support esptool_py vfs)
|
||||||
@ -21,3 +22,6 @@ idf_component_register(SRCS ${srcs}
|
|||||||
if(CMAKE_C_COMPILER_ID MATCHES "GNU")
|
if(CMAKE_C_COMPILER_ID MATCHES "GNU")
|
||||||
set_source_files_properties(spiffs/src/spiffs_nucleus.c PROPERTIES COMPILE_FLAGS -Wno-stringop-truncation)
|
set_source_files_properties(spiffs/src/spiffs_nucleus.c PROPERTIES COMPILE_FLAGS -Wno-stringop-truncation)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
# Upstream SPIFFS code uses format specifiers in debug logging macros inconsistently
|
||||||
|
set_source_files_properties(${original_srcs} PROPERTIES COMPILE_FLAGS -Wno-format)
|
||||||
|
@ -71,7 +71,7 @@ extern void spiffs_api_unlock(struct spiffs_t *fs);
|
|||||||
|
|
||||||
// Defines spiffs debug print formatters
|
// Defines spiffs debug print formatters
|
||||||
// some general signed number
|
// some general signed number
|
||||||
#define _SPIPRIi "%d"
|
#define _SPIPRIi "%"PRIdMAX
|
||||||
// address
|
// address
|
||||||
#define _SPIPRIad "%08x"
|
#define _SPIPRIad "%08x"
|
||||||
// block
|
// block
|
||||||
|
Loading…
Reference in New Issue
Block a user