rt-thread-official/components/libc/Kconfig

39 lines
791 B
Plaintext
Raw Normal View History

menu "POSIX layer and C standard library"
2017-01-31 11:54:12 +08:00
config RT_USING_LIBC
2017-10-13 12:44:54 +08:00
bool "Enable libc APIs from toolchain"
default y
2017-01-31 11:54:12 +08:00
config RT_USING_PTHREADS
2017-10-13 12:44:54 +08:00
bool "Enable pthreads APIs"
default n
2017-12-23 23:55:05 +08:00
if RT_USING_LIBC && RT_USING_DFS
config RT_USING_POSIX
bool "Enable POSIX layer for poll/select, stdin etc"
2017-10-13 12:44:54 +08:00
select RT_USING_DFS_DEVFS
default y
if RT_USING_POSIX
2017-10-13 12:44:54 +08:00
config RT_USING_POSIX_MMAP
bool "Enable mmap() api"
default n
config RT_USING_POSIX_TERMIOS
bool "Enable termios feature"
default n
2018-07-18 11:05:39 +08:00
2017-12-31 14:49:18 +08:00
config RT_USING_POSIX_AIO
bool "Enable AIO"
default n
endif
2018-04-25 23:26:20 +08:00
if RT_USING_MODULE
config RT_USING_LIBDL
bool "Enable dlopen/dlsym/dlclose feature"
default n
endif
2017-10-13 12:44:54 +08:00
endif
2017-01-31 11:54:12 +08:00
endmenu