I am trying to compile litecoind on Ubuntu 11.10 i386 server.
I used this recipe I found:
git clone https://github.com/coblee/litecoin.gitcd ~/litecoin/src/make -f makefile.unix litecoindmkdir ~/.litecoin/
But I am stuck there:
make -f makefile.unix litecoind
I get:
# make -f makefile.unix litecoindmakefile.unix:138: warning: overriding commands for target `obj/nogui/scrypt.o'makefile.unix:135: warning: ignoring old commands for target `obj/nogui/scrypt.o'g++ -c -pthread -Wno-invalid-offsetof -Wformat -g -DNOPCH -DUSE_UPNP=0 -DUSE_SSL -fno-stack-protector -fstack-protector-all -Wstack-protector -Wl,-z,relro -Wl,-z,now -D_FORTIFY_SOURCE=2 -O2 -MMD -o obj/nogui/checkpoints.o checkpoints.cppcheckpoints.cpp:5:59: fatal error: boost/assign/list_of.hpp: No such file or directorycompilation terminated.make: *** [obj/nogui/checkpoints.o] Error 1
Anyone know what is going wrong? Seem like a file missing or a problem with the compiler. Also failed on Ubuntu server 11.10 x64...
In that case the solution is:
sudo apt-get install libboost-all-dev
Thank's to David Schwartz for his help.