xref: /OK3568_Linux_fs/buildroot/package/uvw/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config BR2_PACKAGE_UVW
2	bool "uvw"
3	depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # libuv
4	depends on BR2_USE_MMU # libuv
5	depends on !BR2_STATIC_LIBS # libuv
6	depends on BR2_INSTALL_LIBSTDCPP
7	depends on BR2_TOOLCHAIN_HAS_SYNC_4 # libuv
8	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17
9	select BR2_PACKAGE_LIBUV
10	help
11	  Header-only, event based, tiny and easy to use
12	  libuv wrapper in modern C++.
13
14	  https://github.com/skypjack/uvw
15
16comment "uvw needs a toolchain w/ NPTL, dynamic library, C++, gcc >= 7"
17	depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS || \
18		!BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_7
19	depends on BR2_USE_MMU
20	depends on BR2_TOOLCHAIN_HAS_SYNC_4
21