1*4882a593Smuzhiyunconfig BR2_PACKAGE_CAPNPROTO 2*4882a593Smuzhiyun bool "capnproto" 3*4882a593Smuzhiyun depends on BR2_USE_MMU 4*4882a593Smuzhiyun depends on BR2_HOST_GCC_AT_LEAST_5 # C++14 5*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # C++14 6*4882a593Smuzhiyun depends on BR2_INSTALL_LIBSTDCPP 7*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_HAS_THREADS 8*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_HAS_ATOMIC 9*4882a593Smuzhiyun depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 10*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_HAS_UCONTEXT 11*4882a593Smuzhiyun help 12*4882a593Smuzhiyun Cap'n Proto is an insanely fast data interchange format 13*4882a593Smuzhiyun and capability-based RPC system. Think JSON, except 14*4882a593Smuzhiyun binary. Or think Protocol Buffers, except faster. In 15*4882a593Smuzhiyun fact, in benchmarks, Cap'n Proto is INFINITY TIMES 16*4882a593Smuzhiyun faster than Protocol Buffers. 17*4882a593Smuzhiyun 18*4882a593Smuzhiyun https://capnproto.org/index.html 19*4882a593Smuzhiyun 20*4882a593Smuzhiyuncomment "capnproto needs host and target gcc >= 5 w/ C++14, threads, atomic, ucontext and not gcc bug 64735" 21*4882a593Smuzhiyun depends on BR2_USE_MMU 22*4882a593Smuzhiyun depends on !BR2_HOST_GCC_AT_LEAST_5 || \ 23*4882a593Smuzhiyun !BR2_TOOLCHAIN_GCC_AT_LEAST_5 || \ 24*4882a593Smuzhiyun !BR2_INSTALL_LIBSTDCPP || \ 25*4882a593Smuzhiyun !BR2_TOOLCHAIN_HAS_THREADS || \ 26*4882a593Smuzhiyun !BR2_TOOLCHAIN_HAS_ATOMIC || \ 27*4882a593Smuzhiyun BR2_TOOLCHAIN_HAS_GCC_BUG_64735 || \ 28*4882a593Smuzhiyun !BR2_TOOLCHAIN_HAS_UCONTEXT 29