comment "ola needs a toolchain w/ C++, threads, largefile, wchar"
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_LARGEFILE || !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
+ depends on BR2_arm || BR2_i386 || BR2_mipsel || BR2_x86_64
config BR2_PACKAGE_OLA
bool "ola (open lighting architecture)"
depends on BR2_LARGEFILE # util-linux
depends on BR2_USE_WCHAR # util-linux
depends on BR2_TOOLCHAIN_HAS_THREADS
+ depends on BR2_arm || BR2_i386 || BR2_mipsel || BR2_x86_64 # protobuf
help
Open Lighting Architecture provides applications
with a mechanism to send and receive DMX512 & RDM
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.
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