2018-11-29 07:21:40 +01:00
|
|
|
config BR2_PACKAGE_GRPC
|
|
|
|
bool "grpc"
|
|
|
|
depends on BR2_INSTALL_LIBSTDCPP # protobuf
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # protobuf
|
|
|
|
depends on BR2_PACKAGE_PROTOBUF_ARCH_SUPPORTS # protobuf
|
|
|
|
depends on BR2_HOST_GCC_AT_LEAST_4_8 # protobuf
|
|
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # protobuf
|
|
|
|
depends on !BR2_STATIC_LIBS # protobuf
|
2018-12-07 18:12:41 +01:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 || BR2_TOOLCHAIN_HAS_ATOMIC
|
2018-11-29 07:21:40 +01:00
|
|
|
select BR2_PACKAGE_C_ARES
|
|
|
|
select BR2_PACKAGE_OPENSSL
|
|
|
|
select BR2_PACKAGE_PROTOBUF
|
|
|
|
select BR2_PACKAGE_ZLIB
|
|
|
|
help
|
|
|
|
A language-neutral, platform-neutral, open source, remote
|
|
|
|
procedure call (RPC) system initially developed at Google.
|
|
|
|
|
|
|
|
http://github.com/grpc/grpc
|
|
|
|
|
|
|
|
comment "grpc needs a toolchain w/ C++, threads, dynamic library, host and target gcc >= 4.8"
|
2018-12-07 18:12:41 +01:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 || BR2_TOOLCHAIN_HAS_ATOMIC
|
2018-11-29 07:21:40 +01:00
|
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS \
|
|
|
|
|| BR2_STATIC_LIBS || !BR2_HOST_GCC_AT_LEAST_4_8 \
|
|
|
|
|| !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
|
|
|
|
depends on BR2_PACKAGE_PROTOBUF_ARCH_SUPPORTS
|