rt-thread/components/libc/Kconfig

63 lines
1.2 KiB
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
if RT_USING_PTHREADS
config PTHREAD_NUM_MAX
int "Maximum number of pthreads"
default 8
endif
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"
2017-10-13 12:44:54 +08:00
default n
config RT_USING_POSIX_TERMIOS
bool "Enable termios APIs"
default n
config RT_USING_POSIX_GETLINE
bool "Enable getline()/getdelim() APIs"
2017-10-13 12:44:54 +08:00
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
endif
if RT_USING_LIBC
2018-08-30 20:27:45 +08:00
config RT_USING_MODULE
bool "Enable dynamic module with dlopen/dlsym/dlclose feature"
2018-04-25 23:26:20 +08:00
default n
if RT_USING_MODULE
config RT_USING_CUSTOM_DLMODULE
bool "Enable load dynamic module by custom"
default n
endif
2017-10-13 12:44:54 +08:00
endif
2017-01-31 11:54:12 +08:00
if RT_USING_LIBC != y
2021-02-26 06:34:52 +08:00
config RT_LIBC_USING_TIME
bool "Enable TIME FUNCTIONS WITHOUT COMPILER'S LIBC"
default y
endif
2017-01-31 11:54:12 +08:00
endmenu