mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@26c91a9
This commit is contained in:
@@ -1,11 +1,13 @@
|
||||
config BR2_PACKAGE_CAPNPROTO
|
||||
bool "capnproto"
|
||||
depends on BR2_USE_MMU
|
||||
depends on BR2_HOST_GCC_AT_LEAST_4_8 # C++11
|
||||
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
|
||||
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
|
||||
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735
|
||||
depends on BR2_TOOLCHAIN_HAS_UCONTEXT
|
||||
help
|
||||
Cap'n Proto is an insanely fast data interchange format
|
||||
and capability-based RPC system. Think JSON, except
|
||||
@@ -15,10 +17,12 @@ config BR2_PACKAGE_CAPNPROTO
|
||||
|
||||
https://capnproto.org/index.html
|
||||
|
||||
comment "capnproto needs host and target gcc >= 4.8 w/ C++, threads, atomic"
|
||||
comment "capnproto needs host and target gcc >= 5 w/ C++14, threads, atomic, ucontext and not gcc bug 64735"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_HOST_GCC_AT_LEAST_4_8 || \
|
||||
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 || \
|
||||
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
|
||||
!BR2_TOOLCHAIN_HAS_ATOMIC || \
|
||||
BR2_TOOLCHAIN_HAS_GCC_BUG_64735 || \
|
||||
!BR2_TOOLCHAIN_HAS_UCONTEXT
|
||||
|
||||
Reference in New Issue
Block a user