Skip to content

Commit 6184e1a

Browse files
committed
Use libc implementations by default, instead of builtin ones
Don't override the C library implementations of standard interfaces unless the user explicitly selects them. Signed-off-by: Keith Packard <[email protected]>
1 parent b03edc8 commit 6184e1a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Kconfig

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ menu "LVGL configuration"
4343
menu "Memory Settings"
4444
choice
4545
prompt "Malloc functions source"
46-
default LV_USE_BUILTIN_MALLOC
46+
default LV_USE_CLIB_MALLOC
4747

4848
config LV_USE_BUILTIN_MALLOC
4949
bool "LVGL's built in implementation"
@@ -64,7 +64,7 @@ menu "LVGL configuration"
6464

6565
choice
6666
prompt "String functions source"
67-
default LV_USE_BUILTIN_STRING
67+
default LV_USE_CLIB_STRING
6868

6969
config LV_USE_BUILTIN_STRING
7070
bool "LVGL's built in implementation"
@@ -79,7 +79,7 @@ menu "LVGL configuration"
7979

8080
choice
8181
prompt "Sprintf functions source"
82-
default LV_USE_BUILTIN_SPRINTF
82+
default LV_USE_CLIB_SPRINTF
8383

8484
config LV_USE_BUILTIN_SPRINTF
8585
bool "LVGL's built in implementation"

0 commit comments

Comments
 (0)