2018-07-11 00:31:25 +02:00
|
|
|
config BR2_PACKAGE_CAPNPROTO
|
|
|
|
bool "capnproto"
|
|
|
|
depends on BR2_USE_MMU
|
2019-09-09 20:52:14 +02:00
|
|
|
depends on BR2_HOST_GCC_AT_LEAST_5 # C++14
|
|
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # C++14
|
2018-07-11 00:31:25 +02:00
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_ATOMIC
|
2020-05-16 09:53:13 +02:00
|
|
|
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_UCONTEXT
|
2018-07-11 00:31:25 +02:00
|
|
|
help
|
|
|
|
Cap'n Proto is an insanely fast data interchange format
|
|
|
|
and capability-based RPC system. Think JSON, except
|
|
|
|
binary. Or think Protocol Buffers, except faster. In
|
2019-05-07 22:35:30 +02:00
|
|
|
fact, in benchmarks, Cap'n Proto is INFINITY TIMES
|
2018-07-11 00:31:25 +02:00
|
|
|
faster than Protocol Buffers.
|
|
|
|
|
|
|
|
https://capnproto.org/index.html
|
|
|
|
|
2020-05-16 09:53:13 +02:00
|
|
|
comment "capnproto needs host and target gcc >= 5 w/ C++14, threads, atomic, ucontext and not gcc bug 64735"
|
2018-07-11 00:31:25 +02:00
|
|
|
depends on BR2_USE_MMU
|
2019-09-09 20:52:14 +02:00
|
|
|
depends on !BR2_HOST_GCC_AT_LEAST_5 || \
|
|
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_5 || \
|
2018-07-11 00:31:25 +02:00
|
|
|
!BR2_INSTALL_LIBSTDCPP || \
|
|
|
|
!BR2_TOOLCHAIN_HAS_THREADS || \
|
2020-05-16 09:53:13 +02:00
|
|
|
!BR2_TOOLCHAIN_HAS_ATOMIC || \
|
|
|
|
BR2_TOOLCHAIN_HAS_GCC_BUG_64735 || \
|
|
|
|
!BR2_TOOLCHAIN_HAS_UCONTEXT
|