Config.in 578 B

1234567891011121314151617
  1. config 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. select BR2_PACKAGE_LIBUV
  8. select BR2_PACKAGE_PYTHON3_SSL
  9. help
  10. Fast implementation of asyncio event loop on top of libuv.
  11. http://github.com/MagicStack/uvloop
  12. comment "python-uvloop needs a toolchain w/ NPTL, dynamic library"
  13. depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS
  14. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  15. depends on BR2_USE_MMU