Hi
i complied a bitcoind in Ubuntu Dektop 64bit
./configure
make
make install
completed and works well in Ubuntu
i moved this bitcoind into a Centos 64bit 6.5, ran it and some errors came out
./bitcoind: error while loading shared libraries: libboost_system.so.1.58.0: cannot open shared object file: No such file or directory
i think all *.so lib required need to be compiled together with the bitcoind binnary, but how? i tried
./configure --disable-shared
make clean
make
sudo make install
completed but still doesn't work in Centos, same error
and tried
./configure
make clean
make STATIC=all
sudo make install
completed but still doesn't work in Centos, same error
the bitcoind in
https://bitcoin.org/bin/bitcoin-core-0.13.0/bitcoin-0.13.0-x86_64-linux-gnu.tar.gz however works well in both Centos and Ubuntu