edc482d2c5
Adds dependency on at least GCC 5 to have C++14 language features that are required starting in version 0.7.0 of capnproto. Fixes: http://autobuild.buildroot.org/results/5c09e745cab822d830f73e33647f3b0e765c9181 (capnproto build failure) Fixes: http://autobuild.buildroot.org/results/743c750e9932658c20965a25de89c3f21a1d43e9 (host-capnproto build failure) This updated dependency is propagated to capnproto unique reverse dependency, c-capnproto. Signed-off-by: Koen Martens <gmc@sonologic.nl> Signed-off-by: Joel Carlson <JoelsonCarl@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
25 lines
846 B
Plaintext
25 lines
846 B
Plaintext
config BR2_PACKAGE_CAPNPROTO
|
|
bool "capnproto"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_HOST_GCC_AT_LEAST_5 # C++14
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # C++14
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_TOOLCHAIN_HAS_ATOMIC
|
|
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
|
|
fact, in benchmarks, Cap'n Proto is INFINITY TIMES
|
|
faster than Protocol Buffers.
|
|
|
|
https://capnproto.org/index.html
|
|
|
|
comment "capnproto needs host and target gcc >= 5 w/ C++14, threads, atomic"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_HOST_GCC_AT_LEAST_5 || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_5 || \
|
|
!BR2_INSTALL_LIBSTDCPP || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS || \
|
|
!BR2_TOOLCHAIN_HAS_ATOMIC
|