Boost
bitcoind で使う場合は、ヘッダーだけで良さそう?ビルドは不要?
bitcoin/depends/packages/boost.mk at 28.x · bitcoin/bitcoin
Boost Getting Started on Unix Variants - 1.79.0
boost_1_77_0.tar.bz2 をダウンロード
code:shell
cd libboost
curl -LO https://boostorg.jfrog.io/artifactory/main/release/1.77.0/source/boost_1_77_0.tar.bz2
tar --bzip2 -xf /path/to/boost_1_77_0.tar.bz2
cd boost_1_77_0
./bootstrap.sh --prefix=../boost_1_77_0_bin
./b2 install
make bitcoin
/usr/bin/ld: warning: libboost_atomic.so.1.77.0, needed by /home/kanna/libboost/boost_1_77_0_bin/lib/libboost_filesystem.so, not found (try using -rpath or -rpath-link)
./bootstrap.sh --prefix=../boost_1_77_0_bin --with-libraries=all にしてみる
all はデフォルトのようなので意味ないのでは?