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