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 aaf4e9d commit eee2a2eCopy full SHA for eee2a2e
graphics/lvgl/Kconfig
@@ -1641,4 +1641,8 @@ menu "LVGL configuration"
1641
1642
endmenu
1643
1644
+config LV_OPTLEVEL
1645
+ string "Customize compilation optimization level"
1646
+ default ""
1647
+
1648
endif # GRAPHICS_LVGL
graphics/lvgl/Makefile
@@ -78,6 +78,11 @@ ifeq ($(wildcard $(LVGL_UNPACKNAME)/.git),)
78
context:: $(LVGL_UNPACKNAME)
79
endif
80
81
+ifneq ($(CONFIG_LV_OPTLEVEL), "")
82
+CFLAGS += $(CONFIG_LV_OPTLEVEL)
83
+CXXFLAGS += $(CONFIG_LV_OPTLEVEL)
84
+endif
85
86
include $(APPDIR)/Application.mk
87
88
ifeq ($(wildcard $(LVGL_UNPACKNAME)/.git),)
0 commit comments