我似乎遗漏了一些与提升相关的东西。
狗狗币给出的要求如下:
qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev libssl-dev libdb++-dev libminiupnpc-dev
https://github.com/dogecoin/dogecoin/blob/master/doc/readme-qt.rst
编译错误:
s/db/build_unix -Ic:/deps/ssl/include -Ibuild -Ibuild -o build/net.o src/net.cpp
src/main.cpp:17:53: fatal error: boost/random/uniform_int_distribution.hpp: No such file or directory
compilation terminated.
make: *** [build/main.o] Error 1
make: *** Waiting for unfinished jobs....
thufir@dur:~/dogecoin$
thufir@dur:~/dogecoin$ apt-cache search libboost1.53-all-dev
thufir@dur:~/dogecoin$
thufir@dur:~/dogecoin$ sudo apt-get install libboost-all-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
libboost-all-dev is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
thufir@dur:~/dogecoin$
也可以看看:
答案1
尝试
sudo apt-get install libboost1.48-all-dev
然后
make -j2 -f makefile.unix USE_UPNP=-
如果您正在制作守护进程版本。USE_UPNP=- 消除了安装 miniupnpc 的需要。至于 libqrencode,这也是一个选项。