8677473035
protobuf 2.5.0 adds an atomic operations implementation that is limited to a few architectures only. mips64el and armeb don't work either. Fixes (among others) http://autobuild.buildroot.net/results/ae9fa612d0b6c9d593504206d5cedd480ad2547e/ Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
17 lines
633 B
Plaintext
17 lines
633 B
Plaintext
config BR2_PACKAGE_PROTOBUF
|
|
bool "protobuf"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
# See src/google/protobuf/stubs/platform_macros.h for supported archs.
|
|
# PowerPC doesn't actually work.
|
|
depends on BR2_arm || BR2_i386 || BR2_mipsel || BR2_x86_64
|
|
help
|
|
Protocol buffers are Google's language-neutral, platform-neutral,
|
|
extensible mechanism for serializing structured data.
|
|
|
|
http://code.google.com/p/protobuf/
|
|
|
|
comment "protobuf needs a toolchain w/ C++, threads"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_arm || BR2_i386 || BR2_mipsel || BR2_x86_64
|