4f7f056569
Commit fc7606010e
forgot to propagate
libabseil-cpp dependencies to re2
Fixes:
- No autobuilder failures (yet)
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Reviewed-by: Michael Nosthoff <buildroot@heine.tech>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
28 lines
1.1 KiB
Plaintext
28 lines
1.1 KiB
Plaintext
config BR2_PACKAGE_GRPC
|
|
bool "grpc"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # protobuf, re2
|
|
depends on BR2_PACKAGE_PROTOBUF_ARCH_SUPPORTS # protobuf
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_8 # libabseil-cpp, re2
|
|
depends on !BR2_STATIC_LIBS # protobuf, libabseil-cpp, re2
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 || BR2_TOOLCHAIN_HAS_ATOMIC
|
|
depends on BR2_PACKAGE_LIBABSEIL_CPP_ARCH_SUPPORTS
|
|
select BR2_PACKAGE_C_ARES
|
|
select BR2_PACKAGE_LIBABSEIL_CPP
|
|
select BR2_PACKAGE_OPENSSL
|
|
select BR2_PACKAGE_PROTOBUF
|
|
select BR2_PACKAGE_RE2
|
|
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, gcc >= 8"
|
|
depends on BR2_PACKAGE_LIBABSEIL_CPP_ARCH_SUPPORTS
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 || BR2_TOOLCHAIN_HAS_ATOMIC
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS \
|
|
|| BR2_STATIC_LIBS || !BR2_TOOLCHAIN_GCC_AT_LEAST_8
|
|
depends on BR2_PACKAGE_PROTOBUF_ARCH_SUPPORTS
|