diff options
| author | Anton Kolesov <anton.kolesov@synopsys.com> | 2014-07-31 17:24:48 +0400 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-08-03 11:24:33 +0200 |
| commit | b7a791a103d21835d0e3fb8accfb58346330560f (patch) | |
| tree | ef5bf2cf93f2ef9ba43e3c71c2e4af81dc7f095e /package/beecrypt | |
| parent | b35d1582346625a7076de0a44958d5c5133103d2 (diff) | |
| download | buildroot-b7a791a103d21835d0e3fb8accfb58346330560f.tar.gz buildroot-b7a791a103d21835d0e3fb8accfb58346330560f.zip | |
icu: Add dependency on atomic intrinsics
ICU requires GCC built-in atomic functions which are architecture specific
and may not be implemented.
Signed-off-by: Anton Kolesov <Anton.Kolesov@synopsys.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/beecrypt')
| -rw-r--r-- | package/beecrypt/Config.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/package/beecrypt/Config.in b/package/beecrypt/Config.in index 462c8a65cf..e0f9181a29 100644 --- a/package/beecrypt/Config.in +++ b/package/beecrypt/Config.in @@ -1,5 +1,5 @@ -comment "beecrypt needs a toolchain w/ threads" - depends on !BR2_TOOLCHAIN_HAS_THREADS +comment "beecrypt needs a toolchain w/ threads, atomic intrinsics" + depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_HAS_ATOMIC_INTRINSICS config BR2_PACKAGE_BEECRYPT bool "beecrypt" @@ -15,15 +15,15 @@ config BR2_PACKAGE_BEECRYPT_CPP bool "C++ support" depends on BR2_INSTALL_LIBSTDCPP depends on BR2_USE_WCHAR # icu - depends on !BR2_arc # icu + depends on BR2_TOOLCHAIN_HAS_ATOMIC_INTRINSICS # icu depends on !BR2_BINFMT_FLAT # icu select BR2_PACKAGE_ICU help Enable C++ support. This pulls in the (large) icu package. -comment "C++ support needs a toolchain w/ wchar" - depends on !BR2_arc +comment "C++ support needs a toolchain w/ wchar, atomic intrinsics" depends on !BR2_BINFMT_FLAT - depends on BR2_INSTALL_LIBSTDCPP && !BR2_USE_WCHAR + depends on BR2_INSTALL_LIBSTDCPP && (!BR2_USE_WCHAR || \ + !BR2_TOOLCHAIN_HAS_ATOMIC_INTRINSICS) endif # BR2_PACKAGE_BEECRYPT |

