1menu "Lib" 2config LIB_LIBC 3 bool "Enable Libc" 4 default y 5 help 6 Answer Y to enable libc for full code. 7 8choice 9 prompt "choose libc" 10 default LIBC_MUSL 11 depends on LIB_LIBC 12 help 13 Choose libc. 14 15config LIBC_NEWLIB 16 bool "newlibc" 17 18config LIBC_MUSL 19 bool "musl libc" 20endchoice 21 22config LIB_ZLIB 23 bool "Enable Zlib" 24 default y 25 depends on LIB_LIBC 26 help 27 Answer Y to enable LiteOS support compress file library. 28endmenu 29 30