why doesn't this work?
[root@localhost bitcoin]# make
make: *** No targets specified and no makefile found. Stop.
[root@localhost bitcoin]# sudo make install
make: *** No rule to make target `install'. Stop.
As I already said, it is because the ./configure command failed with an error (check the log output above).
The error says your version of GCC compiler is too old. If you are on CentOS 7 it is probably 4.8.5. This is a really old version of GCC.
As I also said above, you need to download and install a newer version of GCC.
1) old /opt/bicoin-v0.16 rename *_old
2) old /root/bitcoin rename *_old
3)
done
4)
https://gist.github.com/cdljsj/180e705fad8647590ee0ecc1f6182f43v22.0
checking for boostlib >= 1.64.0 (106400)... configure: We could not detect the boost libraries (version 1.64.0 or higher). If you have a staged boost library (still not installed) please specify $BOOST_ROOT in your environment and do not give a PATH to --with-boost option. If you are sure you have boost installed, then check your version number looking in <boost/version.hpp>. See
http://randspringer.de/boost for more documentation.
configure: error: Boost is not available!
[root@localhost bitcoin]# make
make: *** No targets specified and no makefile found. Stop.
[root@localhost bitcoin]# sudo make install
make: *** No rule to make target `install'. Stop.
5) update bootslib
yum update
yum install epel-release
yum install boost boost-thread boost-devel
wget 1_77_0 version
tar -xzf boost_1_77_0.*
cd boost_1_77_0
./bootstrap.sh --prefix=/opt/boost
./b2 install --prefix=/opt/boost --with=all
[root@localhost boost_1_77_0]# ./b2 install --prefix=/opt/boost --with=all
./b2: /lib64/libstdc++.so.6: version `GLIBCXX_3.4.20' not found (required by ./b2)
./b2: /lib64/libstdc++.so.6: version `GLIBCXX_3.4.21' not found (required by ./b2)
strings /usr/lib64/libstdc++.so.6 | grep GLIBCXX
GLIBCXX_3.4
GLIBCXX_3.4.1
GLIBCXX_3.4.2
GLIBCXX_3.4.3
GLIBCXX_3.4.4
GLIBCXX_3.4.5
GLIBCXX_3.4.6
GLIBCXX_3.4.7
GLIBCXX_3.4.8
GLIBCXX_3.4.9
GLIBCXX_3.4.10
GLIBCXX_3.4.11
GLIBCXX_3.4.12
GLIBCXX_3.4.13
GLIBCXX_3.4.14
GLIBCXX_3.4.15
GLIBCXX_3.4.16
GLIBCXX_3.4.17
GLIBCXX_3.4.18
GLIBCXX_3.4.19
GLIBCXX_DEBUG_MESSAGE_LENGTH
I can not find instructions on how to set up
UPD
export LD_LIBRARY_PATH=/usr/local/lib:/usr/lib:/usr/local/lib64:/usr/lib64
./b2 install --prefix=/opt/boost --with=all
done
[root@localhost bitcoin]# strings /usr/lib64/libstdc++.so.6 | grep GLIBCXX
GLIBCXX_3.4
GLIBCXX_3.4.1
GLIBCXX_3.4.2
GLIBCXX_3.4.3
GLIBCXX_3.4.4
GLIBCXX_3.4.5
GLIBCXX_3.4.6
GLIBCXX_3.4.7
GLIBCXX_3.4.8
GLIBCXX_3.4.9
GLIBCXX_3.4.10
GLIBCXX_3.4.11
GLIBCXX_3.4.12
GLIBCXX_3.4.13
GLIBCXX_3.4.14
GLIBCXX_3.4.15
GLIBCXX_3.4.16
GLIBCXX_3.4.17
GLIBCXX_3.4.18
GLIBCXX_3.4.19
GLIBCXX_DEBUG_MESSAGE_LENGTH
fail