mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@26c91a9
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
config BR2_PACKAGE_BITCOIN_ARCH_SUPPORTS
|
||||
bool
|
||||
depends on BR2_TOOLCHAIN_HAS_ATOMIC
|
||||
default y if BR2_TOOLCHAIN_HAS_ATOMIC
|
||||
# bitcoin uses 8-byte __atomic intrinsics, which are not
|
||||
# available on ARM noMMU platforms that we
|
||||
# support. BR2_TOOLCHAIN_HAS_ATOMIC does not provide a
|
||||
@@ -10,8 +10,10 @@ config BR2_PACKAGE_BITCOIN_ARCH_SUPPORTS
|
||||
config BR2_PACKAGE_BITCOIN
|
||||
bool "bitcoin"
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # std::future
|
||||
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # std::future
|
||||
depends on BR2_PACKAGE_BITCOIN_ARCH_SUPPORTS
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # boost
|
||||
depends on BR2_USE_WCHAR
|
||||
select BR2_PACKAGE_BOOST
|
||||
select BR2_PACKAGE_BOOST_SYSTEM
|
||||
select BR2_PACKAGE_BOOST_FILESYSTEM
|
||||
@@ -36,9 +38,10 @@ config BR2_PACKAGE_BITCOIN
|
||||
|
||||
https://bitcoincore.org
|
||||
|
||||
comment "bitcoin needs a toolchain w/ C++"
|
||||
comment "bitcoin needs a toolchain w/ C++, threads, wchar"
|
||||
depends on BR2_PACKAGE_BITCOIN_ARCH_SUPPORTS
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user