8a98a7d94c
thrift builds perfectly fine on SPARC, which doesn't implement any of
the __sync built-ins, so we can get rid of the BR2_ARCH_HAS_ATOMICS
dependency.
The dependency on atomic operations originated in commit
1aaa14d84f
("thrift: disable for ARC"),
but there was no reference to any autobuilder failure. Our testing
with an ARC toolchain that doesn't have atomics shows that thrift
builds just fine, and code inspection also shows no usage of
__sync_*() built-ins. At the time of the commit, the thrift version
was 0.9.1, which also did not contain any __sync_*() call.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
[yann.morin.1998@free.fr: build-tested on an ARC toolchain without
atomics, with CPU 770D]
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
25 lines
876 B
Plaintext
25 lines
876 B
Plaintext
config BR2_PACKAGE_THRIFT
|
|
bool "thrift"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_USE_WCHAR
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_PACKAGE_BOOST_ARCH_SUPPORTS
|
|
select BR2_PACKAGE_BOOST
|
|
select BR2_PACKAGE_LIBEVENT
|
|
select BR2_PACKAGE_OPENSSL
|
|
select BR2_PACKAGE_ZLIB
|
|
help
|
|
The Apache Thrift software framework, for scalable cross-language
|
|
services development, combines a software stack with a
|
|
code generation engine to build services that work
|
|
efficiently and seamlessly between C++, Java, Python, PHP, Ruby,
|
|
Erlang, Perl, Haskell, C#, Cocoa, JavaScript, Node.js, Smalltalk,
|
|
OCaml and Delphi and other languages.
|
|
|
|
http://thrift.apache.org/
|
|
|
|
comment "thrift needs a toolchain w/ C++, wchar, threads"
|
|
depends on BR2_PACKAGE_BOOST_ARCH_SUPPORTS
|
|
depends on !BR2_USE_WCHAR || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP
|