1config BR2_PACKAGE_QLIBC 2 bool "qlibc" 3 depends on BR2_TOOLCHAIN_HAS_THREADS 4 depends on BR2_USE_WCHAR 5 depends on !BR2_STATIC_LIBS 6 select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE 7 help 8 qLibc is currently one of the most functionally complete 9 public licensed C/C++ libraries. The C/C++ library which 10 includes all kinds of containers and general library 11 routines. It provides ready-made set of common container 12 APIs with consistant API look. 13 14 https://github.com/wolkykim/qlibc 15 16comment "qlibc needs a toolchain w/ threads, wchar, dynamic library" 17 depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR || BR2_STATIC_LIBS 18