Build nano_node samples ARM - bitcoin-black-bcb/btcb GitHub Wiki

Notes

  • This documentation is intended only for developers of the Btcb Node software, and will not result in a supported configuration. End-users are advised to use releases.
  • Using docker has been recommended as a faster method of installation: https://github.com/btcbcurrency/btcb-node/wiki/Docker-node

Running node as a service

To manage node, use RPC commands or CLI


ArchlinuxARM 64bit

Dependency Build Instructions

pacman -Syu  
pacman -S base-devel git gcc cmake curl wget

Building static Boost

wget -O boost_1_67_0.tar.gz http://sourceforge.net/projects/boost/files/boost/1.67.0/boost_1_67_0.tar.gz/download   
tar xzvf boost_1_67_0.tar.gz   
cd boost_1_67_0   
./bootstrap.sh   
./b2 --prefix=../[boost] link=static install   
cd ..

Building btcb_node

git clone --recursive https://github.com/btcbcurrency/btcb-node.git btcb_build   
cd btcb_build   
cmake -DBOOST_ROOT=../[boost] -G "Unix Makefiles"   
make btcb_node   
cp btcb_node ../btcb_node && cd .. && ./btcb_node --diagnostics