Kconfig 473 B

1234567891011121314
  1. menu "C/C++ and POSIX layer"
  2. # This is for external libc(e.g. mlib),
  3. # and NOT for newlib or picolibc which are inherent in the toolchains.
  4. # Usually, the external libc should be a software package and select
  5. # RT_USING_EXTERNAL_LIBC in software package's Kconfig
  6. config RT_USING_EXTERNAL_LIBC
  7. bool
  8. source "$RTT_DIR/components/libc/compilers/common/Kconfig"
  9. source "$RTT_DIR/components/libc/posix/Kconfig"
  10. source "$RTT_DIR/components/libc/cplusplus/Kconfig"
  11. endmenu