summaryrefslogtreecommitdiffstats
path: root/package/php
diff options
context:
space:
mode:
authorAnton Kolesov <anton.kolesov@synopsys.com>2014-07-31 17:24:48 +0400
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2014-08-03 11:24:33 +0200
commitb7a791a103d21835d0e3fb8accfb58346330560f (patch)
treeef5bf2cf93f2ef9ba43e3c71c2e4af81dc7f095e /package/php
parentb35d1582346625a7076de0a44958d5c5133103d2 (diff)
downloadbuildroot-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/php')
-rw-r--r--package/php/Config.ext8
1 files changed, 4 insertions, 4 deletions
diff --git a/package/php/Config.ext b/package/php/Config.ext
index ff9a6ad685..078be8daa7 100644
--- a/package/php/Config.ext
+++ b/package/php/Config.ext
@@ -166,16 +166,16 @@ config BR2_PACKAGE_PHP_EXT_INTL
select BR2_PACKAGE_ICU
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_USE_WCHAR
- depends on !BR2_arc # icu -> atomic builtins
depends on !BR2_BINFMT_FLAT # icu
depends on BR2_TOOLCHAIN_HAS_THREADS # icu
+ depends on BR2_TOOLCHAIN_HAS_ATOMIC_INTRINSICS # icu
help
Internationalization support
-comment "intl support needs a toolchain w/ C++, wchar, threads"
- depends on !BR2_arc
+comment "intl support needs a toolchain w/ C++, wchar, threads, atomic intrinsics"
depends on !BR2_BINFMT_FLAT
- depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
+ depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS \
+ || !BR2_TOOLCHAIN_HAS_ATOMIC_INTRINSICS
comment "Image processing"
OpenPOWER on IntegriCloud