Config.in 693 B

1234567891011121314151617181920
  1. config 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. https://github.com/skypjack/uvw
  14. comment "uvw needs a toolchain w/ NPTL, dynamic library, C++, gcc >= 7"
  15. depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS || \
  16. !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_7
  17. depends on BR2_USE_MMU
  18. depends on BR2_TOOLCHAIN_HAS_SYNC_4