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/qt5/qt5base | |
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/qt5/qt5base')
-rw-r--r-- | package/qt5/qt5base/Config.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/package/qt5/qt5base/Config.in b/package/qt5/qt5base/Config.in index b95a74ad98..67f211c354 100644 --- a/package/qt5/qt5base/Config.in +++ b/package/qt5/qt5base/Config.in @@ -241,12 +241,15 @@ config BR2_PACKAGE_QT5BASE_DBUS config BR2_PACKAGE_QT5BASE_ICU bool "Enable ICU support" select BR2_PACKAGE_ICU - depends on !BR2_arc # icu -> atomic builtins + depends on BR2_TOOLCHAIN_HAS_ATOMIC_INTRINSICS # icu depends on !BR2_BINFMT_FLAT # icu help This option enables ICU support in Qt5. This is for example needed for Qt5Webkit. +comment "icu needs a toolchain w/ atomic intrinsics" + depends on !BR2_TOOLCHAIN_HAS_ATOMIC_INTRINSICS + config BR2_PACKAGE_QT5BASE_TSLIB bool "Enable Tslib support" depends on !BR2_PREFER_STATIC_LIB # dlopen |