KConfig 510 B

123456789101112131415161718192021222324252627
  1. menu "libc"
  2. config RT_USING_LIBC
  3. bool "Enable libc APIs from toolchain"
  4. default y
  5. config RT_USING_PTHREADS
  6. bool "Enable pthreads APIs"
  7. default n
  8. if RT_USING_LIBC
  9. config RT_USING_POSIX_STDIN
  10. bool "Enable stdin"
  11. select RT_USING_DFS
  12. select RT_USING_DFS_DEVFS
  13. default y
  14. config RT_USING_POSIX_MMAP
  15. bool "Enable mmap() api"
  16. default n
  17. config RT_USING_POSIX_TERMIOS
  18. bool "Enable termios feature"
  19. default n
  20. endif
  21. endmenu