Config.in 680 B

12345678910111213141516171819
  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. 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. http://github.com/MagicStack/uvloop
  13. comment "python-uvloop needs a toolchain w/ NPTL, dynamic library, gcc >= 4.9"
  14. depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS \
  15. || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
  16. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  17. depends on BR2_USE_MMU