diff options
author | Mischa Jonker <mischa.jonker@synopsys.com> | 2013-11-11 17:10:53 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2013-11-11 22:27:25 +0100 |
commit | 9b6c5e9c989f4a099efe8d438a47dd465bdcffc8 (patch) | |
tree | 68ab61f6b398ce3dde852b5b606cad77b322ed14 /package/php | |
parent | bed4e27868aaefb3b82dca9ba076415bec368557 (diff) | |
download | buildroot-9b6c5e9c989f4a099efe8d438a47dd465bdcffc8.tar.gz buildroot-9b6c5e9c989f4a099efe8d438a47dd465bdcffc8.zip |
icu: Doesn't work on ARC yet
icu depends on __sync_sub_and_fetch and other atomic primitives that
don't exist in the ARC toolchain yet.
[Peter: adjust beecrypt/php comment dependency, don't mention atomic builtins]
Signed-off-by: Mischa Jonker <mjonker@synopsys.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/php')
-rw-r--r-- | package/php/Config.ext | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/php/Config.ext b/package/php/Config.ext index c0c85f1fe2..23d23064bc 100644 --- a/package/php/Config.ext +++ b/package/php/Config.ext @@ -172,10 +172,12 @@ 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 help Internationalization support comment "intl support needs a toolchain w/ C++, wchar" + depends on !BR2_arc depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR comment "Image processing" |