Search content
Sort by

Showing 1 of 1 result by elekaj34
Post
Topic
Board Announcements (Altcoins)
Re: ♥♥♥♥♥[ANN]HackCoin♥X11♥ONLY 4DAY POW♥POS♥♥♥♥사랑해요♥♥♥♥20G net hash♥♥♥♥♥♥
by
elekaj34
on 07/05/2014, 09:03:07 UTC
Hello guys and girls

I try to run tha wallet on my Debian Wheezy computer

When I lauch the wallet, I've the following error  Huh
Quote
$ ./hackcoind
./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

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 Wink

Thanks for your work Wink