diff options
author | Baruch Siach <baruch@tkos.co.il> | 2014-05-29 07:17:04 +0300 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-05-29 23:18:59 +0200 |
commit | 1aaa14d84f1c920423ed0286b78f64a2b4b2b575 (patch) | |
tree | e102c8ff10e078f2a9bb7c2414fcc2833d876003 | |
parent | 3ba91e346f66d0bb8479ba6163fdaff6303ef256 (diff) | |
download | buildroot-1aaa14d84f1c920423ed0286b78f64a2b4b2b575.tar.gz buildroot-1aaa14d84f1c920423ed0286b78f64a2b4b2b575.zip |
thrift: disable for ARC
thrift uses the __sync_fetch_and_add() atomic primitive that is not available
for ARC.
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/thrift/Config.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/thrift/Config.in b/package/thrift/Config.in index a7f3479982..ac998014bc 100644 --- a/package/thrift/Config.in +++ b/package/thrift/Config.in @@ -4,6 +4,7 @@ config BR2_PACKAGE_THRIFT depends on BR2_USE_WCHAR depends on BR2_LARGEFILE depends on BR2_TOOLCHAIN_HAS_THREADS + depends on !BR2_arc # atomic builtins select BR2_PACKAGE_BOOST select BR2_PACKAGE_LIBEVENT select BR2_PACKAGE_OPENSSL @@ -21,3 +22,4 @@ config BR2_PACKAGE_THRIFT comment "thrift needs a toolchain w/ C++, largefile, wchar, threads" depends on !BR2_LARGEFILE || !BR2_USE_WCHAR || \ !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP + depends on !BR2_arc |