mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
libuv:change LIBUV_BACKEND_EPOLL depends on FS_NOTIFY
Signed-off-by: guohao15 <guohao15@xiaomi.com>
This commit is contained in:
parent
4e386a955e
commit
ed91a3c03c
2 changed files with 2 additions and 4 deletions
|
|
@ -22,8 +22,8 @@ config LIBUV_THREAD_STACKSIZE
|
|||
|
||||
config LIBUV_BACKEND_EPOLL
|
||||
bool "Using epoll backend in libuv"
|
||||
select FS_NOTIFY
|
||||
default y
|
||||
depends on FS_NOTIFY
|
||||
|
||||
if LIBUV_BACKEND_EPOLL
|
||||
|
||||
|
|
|
|||
|
|
@ -81,6 +81,7 @@ ifneq ($(CONFIG_LIBUV_BACKEND_EPOLL),)
|
|||
CSRCS += linux.c
|
||||
else
|
||||
CSRCS += posix-poll.c
|
||||
CSRCS += no-fsevents.c
|
||||
endif
|
||||
CSRCS += uv-data-getter-setters.c
|
||||
CSRCS += version.c
|
||||
|
|
@ -89,9 +90,6 @@ CSRCS += idna.c
|
|||
CSRCS += strscpy.c
|
||||
CSRCS += strtok.c
|
||||
endif
|
||||
ifeq ($(CONFIG_FS_NOTIFY),)
|
||||
CSRCS += no-fsevents.c
|
||||
endif
|
||||
CSRCS += uv-common.c
|
||||
CSRCS += random-devurandom.c
|
||||
CSRCS += random.c
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue