I try to run tha wallet on my Debian Wheezy computer
When I lauch the wallet, I've the following error
Quote
$ ./hackcoind
./hackcoind: error while loading shared libraries: libboost_system.so.1.46.1: cannot open shared object file: No such file or directory
./hackcoind: error while loading shared libraries: libboost_system.so.1.46.1: cannot open shared object file: No such file or directory
The package libboost-system1.49.0 is correctly installed
Quote
$ ll /usr/lib/libboost_system*
lrwxrwxrwx 1 root root 25 févr. 4 2013 /usr/lib/libboost_system.so -> libboost_system.so.1.49.0
-rw-r--r-- 1 root root 13512 févr. 4 2013 /usr/lib/libboost_system.so.1.49.0
lrwxrwxrwx 1 root root 25 févr. 4 2013 /usr/lib/libboost_system.so -> libboost_system.so.1.49.0
-rw-r--r-- 1 root root 13512 févr. 4 2013 /usr/lib/libboost_system.so.1.49.0
So I've created a new link
Code:
ln -s libboost_system.so.1.49.0 libboost_system.so.1.46.1
But it's the same with all libboost library needed. This is a way to do this in a single command line
Code:
for i in libboost_*.so.1.49.0; do lib=`echo $i | cut -d"." -f1`; ln -s $lib.so.1.49.0 $lib.so.1.46.1; done
It may be more portable to load the generic symbolic link (ie such as libboost_system.so for example).
By this way the compilation is not version dependant
Thanks for your work