mirror of
https://github.com/apache/nuttx-apps.git
synced 2025-07-06 03:46:35 +08:00
graphics/lvgl: fix build due to no-format-security
Without this change the build produces error: error: ‘-Wformat-security’ ignored without ‘-Wformat’
This commit is contained in:
parent
6f192bd1e0
commit
6b44c59bee
@ -27,7 +27,7 @@ LVGL_DIR_NAME = lvgl
|
|||||||
|
|
||||||
# Relax LVGL's format checking and unused variable checking to avoid errors
|
# Relax LVGL's format checking and unused variable checking to avoid errors
|
||||||
|
|
||||||
CFLAGS += -Wno-format -Wno-unused-variable
|
CFLAGS += -Wno-format -Wno-format-security -Wno-unused-variable
|
||||||
|
|
||||||
-include ./lvgl/lvgl.mk
|
-include ./lvgl/lvgl.mk
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user