You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Iot_Cs_best/kernel_liteos_a/lib/Kconfig

30 lines
472 B

1 year ago
menu "Lib"
config LIB_LIBC
bool "Enable Libc"
default y
help
Answer Y to enable libc for full code.
choice
prompt "choose libc"
default LIBC_MUSL
depends on LIB_LIBC
help
Choose libc.
config LIBC_NEWLIB
bool "newlibc"
config LIBC_MUSL
bool "musl libc"
endchoice
config LIB_ZLIB
bool "Enable Zlib"
default y
depends on LIB_LIBC
help
Answer Y to enable LiteOS support compress file library.
endmenu