2012-03-15 09:51:27 +01:00
|
|
|
config BR2_PACKAGE_PROTOBUF
|
|
|
|
bool "protobuf"
|
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
2013-10-10 09:23:18 +02:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2014-05-10 22:09:30 +02:00
|
|
|
# See src/google/protobuf/stubs/platform_macros.h for supported archs.
|
2014-10-02 22:40:36 +02:00
|
|
|
depends on BR2_arm || BR2_i386 || BR2_mipsel || BR2_x86_64 || BR2_powerpc
|
2014-05-12 19:45:48 +02:00
|
|
|
# host-protobuf only builds on certain architectures
|
|
|
|
depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86"
|
2012-03-15 09:51:27 +01:00
|
|
|
help
|
|
|
|
Protocol buffers are Google's language-neutral, platform-neutral,
|
|
|
|
extensible mechanism for serializing structured data.
|
|
|
|
|
2014-10-02 22:40:36 +02:00
|
|
|
https://github.com/google/protobuf/
|
2012-03-15 09:51:27 +01:00
|
|
|
|
2013-10-13 16:55:32 +02:00
|
|
|
comment "protobuf needs a toolchain w/ C++, threads"
|
2013-10-10 09:23:18 +02:00
|
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
|
2014-10-02 22:40:36 +02:00
|
|
|
depends on BR2_arm || BR2_i386 || BR2_mipsel || BR2_x86_64 || BR2_powerpc
|
2014-05-12 19:45:48 +02:00
|
|
|
depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86"
|