1config BR2_PACKAGE_PYTHON_UVLOOP 2 bool "python-uvloop" 3 depends on BR2_TOOLCHAIN_HAS_SYNC_4 # libuv 4 depends on BR2_USE_MMU # libuv 5 depends on !BR2_STATIC_LIBS # libuv 6 depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # libuv 7 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libuv 8 select BR2_PACKAGE_LIBUV 9 select BR2_PACKAGE_PYTHON3_SSL 10 help 11 Fast implementation of asyncio event loop on top of libuv. 12 13 http://github.com/MagicStack/uvloop 14 15comment "python-uvloop needs a toolchain w/ NPTL, dynamic library, gcc >= 4.9" 16 depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS \ 17 || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 18 depends on BR2_TOOLCHAIN_HAS_SYNC_4 19 depends on BR2_USE_MMU 20