|
@@ -11,8 +11,8 @@ config BR2_PACKAGE_BITCOIN
|
|
bool "bitcoin"
|
|
bool "bitcoin"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS # boost-thread, boost-filesystem
|
|
depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS # boost-thread, boost-filesystem
|
|
- depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # std::future
|
|
|
|
depends on BR2_PACKAGE_BITCOIN_ARCH_SUPPORTS
|
|
depends on BR2_PACKAGE_BITCOIN_ARCH_SUPPORTS
|
|
|
|
+ depends on BR2_TOOLCHAIN_GCC_AT_LEAST_9
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # boost
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # boost
|
|
depends on BR2_USE_WCHAR
|
|
depends on BR2_USE_WCHAR
|
|
select BR2_PACKAGE_BOOST
|
|
select BR2_PACKAGE_BOOST
|
|
@@ -36,12 +36,9 @@ config BR2_PACKAGE_BITCOIN
|
|
|
|
|
|
https://bitcoincore.org
|
|
https://bitcoincore.org
|
|
|
|
|
|
-comment "bitcoin needs a toolchain w/ C++, threads, wchar"
|
|
|
|
|
|
+comment "bitcoin needs a toolchain w/ C++, threads, wchar, gcc >= 9"
|
|
depends on BR2_PACKAGE_BITCOIN_ARCH_SUPPORTS
|
|
depends on BR2_PACKAGE_BITCOIN_ARCH_SUPPORTS
|
|
depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS
|
|
depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS
|
|
depends on !BR2_INSTALL_LIBSTDCPP || \
|
|
depends on !BR2_INSTALL_LIBSTDCPP || \
|
|
- !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
|
|
|
|
-
|
|
|
|
-comment "bitcoin needs a toolchain not affected by GCC bug 64735"
|
|
|
|
- depends on BR2_PACKAGE_BITCOIN_ARCH_SUPPORTS
|
|
|
|
- depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735
|
|
|
|
|
|
+ !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR || \
|
|
|
|
+ !BR2_TOOLCHAIN_GCC_AT_LEAST_9
|