|
@@ -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
|
|
config BR2_PACKAGE_BEECRYPT
|
|
bool "beecrypt"
|
|
bool "beecrypt"
|
|
@@ -15,15 +15,15 @@ config BR2_PACKAGE_BEECRYPT_CPP
|
|
bool "C++ support"
|
|
bool "C++ support"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_USE_WCHAR # icu
|
|
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
|
|
depends on !BR2_BINFMT_FLAT # icu
|
|
select BR2_PACKAGE_ICU
|
|
select BR2_PACKAGE_ICU
|
|
help
|
|
help
|
|
Enable C++ support. This pulls in the (large) icu package.
|
|
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_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
|
|
endif # BR2_PACKAGE_BEECRYPT
|