:orphan: .. title:: CONFIG_MINIMAL_LIBC .. kconfig:: CONFIG_MINIMAL_LIBC CONFIG_MINIMAL_LIBC ################### *Minimal C library* Type: ``bool`` Help ==== .. code-block:: none Build with minimal C library. Direct dependencies =================== !\ :kconfig:`NATIVE_APPLICATION ` && !\ :kconfig:`REQUIRES_FULL_LIBC ` && \ :kconfig:`SUPPORT_MINIMAL_LIBC ` && \ :ref:` ` *(Includes any dependencies from ifs and menus.)* Kconfig definition ================== At ``/libc/Kconfig:24`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:43`` → ``/Kconfig:4`` Menu path: (Top) → C Library → C Library Implementation .. code-block:: kconfig config MINIMAL_LIBC bool "Minimal C library" depends on !NATIVE_APPLICATION && !REQUIRES_FULL_LIBC && SUPPORT_MINIMAL_LIBC && help Build with minimal C library. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*