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
|
||||
|
||||
CFLAGS += -Wno-format -Wno-unused-variable
|
||||
CFLAGS += -Wno-format -Wno-format-security -Wno-unused-variable
|
||||
|
||||
-include ./lvgl/lvgl.mk
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user