Config.in 932 B

1234567891011121314151617181920212223
  1. config BR2_PACKAGE_GRPC
  2. bool "grpc"
  3. depends on BR2_INSTALL_LIBSTDCPP # protobuf
  4. depends on BR2_TOOLCHAIN_HAS_THREADS # protobuf
  5. depends on BR2_PACKAGE_PROTOBUF_ARCH_SUPPORTS # protobuf
  6. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # protobuf
  7. depends on !BR2_STATIC_LIBS # protobuf
  8. depends on BR2_TOOLCHAIN_HAS_SYNC_4 || BR2_TOOLCHAIN_HAS_ATOMIC
  9. select BR2_PACKAGE_C_ARES
  10. select BR2_PACKAGE_OPENSSL
  11. select BR2_PACKAGE_PROTOBUF
  12. select BR2_PACKAGE_ZLIB
  13. help
  14. A language-neutral, platform-neutral, open source, remote
  15. procedure call (RPC) system initially developed at Google.
  16. http://github.com/grpc/grpc
  17. comment "grpc needs a toolchain w/ C++, threads, dynamic library, gcc >= 4.8"
  18. depends on BR2_TOOLCHAIN_HAS_SYNC_4 || BR2_TOOLCHAIN_HAS_ATOMIC
  19. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS \
  20. || BR2_STATIC_LIBS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
  21. depends on BR2_PACKAGE_PROTOBUF_ARCH_SUPPORTS