441b51b706
in the initial impl, the regex is depends on ALLOW_MIT_COMPONENTS, and if other modules want to use regex, also needs to depends on ALLOW_MIT_COMPONENTS, which is ambiguity, so we provide a seperate kconfig option for regex: LIBC_REGEX, which is depends on ALLOW_MIT_COMPONENTS, but is enabled by default. Thus if ALLOW_MIT_COMPONENTS is enabled, then the LIBC_REGEX is also enabled either automatically, and this is more clear than controlled by ALLOW_MIT_COMPONENTS option only. Signed-off-by: guoshichao <guoshichao@xiaomi.com>
33 lines
1002 B
Plaintext
33 lines
1002 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
comment "Standard C Library Options"
|
|
|
|
source "libs/libc/stdio/Kconfig"
|
|
source "libs/libc/audio/Kconfig"
|
|
source "libs/libc/machine/Kconfig"
|
|
source "libs/libc/stdlib/Kconfig"
|
|
source "libs/libc/unistd/Kconfig"
|
|
source "libs/libc/string/Kconfig"
|
|
source "libs/libc/pthread/Kconfig"
|
|
source "libs/libc/dlfcn/Kconfig"
|
|
source "libs/libc/modlib/Kconfig"
|
|
source "libs/libc/grp/Kconfig"
|
|
source "libs/libc/pwd/Kconfig"
|
|
source "libs/libc/locale/Kconfig"
|
|
source "libs/libc/lzf/Kconfig"
|
|
source "libs/libc/time/Kconfig"
|
|
source "libs/libc/tls/Kconfig"
|
|
source "libs/libc/net/Kconfig"
|
|
source "libs/libc/netdb/Kconfig"
|
|
source "libs/libc/misc/Kconfig"
|
|
source "libs/libc/wqueue/Kconfig"
|
|
source "libs/libc/hex2bin/Kconfig"
|
|
source "libs/libc/userfs/Kconfig"
|
|
source "libs/libc/builtin/Kconfig"
|
|
source "libs/libc/symtab/Kconfig"
|
|
source "libs/libc/stream/Kconfig"
|
|
source "libs/libc/regex/Kconfig"
|