1config BR2_PACKAGE_WAMPCC 2 bool "wampcc" 3 depends on BR2_INSTALL_LIBSTDCPP 4 depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # libuv 5 depends on BR2_USE_MMU # libuv 6 depends on !BR2_STATIC_LIBS # libuv 7 depends on BR2_TOOLCHAIN_HAS_ATOMIC 8 depends on BR2_TOOLCHAIN_HAS_SYNC_4 # libuv 9 depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # std::shared_future 10 select BR2_PACKAGE_LIBUV 11 select BR2_PACKAGE_JANSSON 12 select BR2_PACKAGE_OPENSSL 13 help 14 wampcc is a C++ library that implements the Web Application 15 Messaging Protocol. 16 17 https://github.com/darrenjs/wampcc 18 19comment "wampcc needs a toolchain w/ C++, NPTL, dynamic library" 20 depends on BR2_USE_MMU 21 depends on BR2_TOOLCHAIN_HAS_ATOMIC 22 depends on BR2_TOOLCHAIN_HAS_SYNC_4 23 depends on !BR2_INSTALL_LIBSTDCPP || \ 24 !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS 25 26comment "wampcc needs a toolchain not affected by GCC bug 64735" 27 depends on BR2_USE_MMU 28 depends on BR2_TOOLCHAIN_HAS_ATOMIC 29 depends on BR2_TOOLCHAIN_HAS_SYNC_4 30 depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735 31