Boost
bitcoind で使う場合は、ヘッダーだけで良さそう?ビルドは不要?
boost_1_77_0.tar.bz2 をダウンロード
code:shell
cd libboost
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 はデフォルトのようなので意味ないのでは?