mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00: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
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue