Config.in 610 B

123456789101112131415161718
  1. config BR2_PACKAGE_PYTHON_UVLOOP
  2. bool "python-uvloop"
  3. depends on BR2_PACKAGE_PYTHON3
  4. depends on BR2_TOOLCHAIN_HAS_SYNC_4 # libuv
  5. depends on BR2_USE_MMU # libuv
  6. depends on !BR2_STATIC_LIBS # libuv
  7. depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # 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. http://github.com/MagicStack/uvloop
  13. comment "python-uvloop needs a toolchain w/ NPTL, dynamic library"
  14. depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS
  15. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  16. depends on BR2_USE_MMU