Bitcoin Forum
November 02, 2024, 07:43:32 AM *
News: Latest Bitcoin Core release: 28.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ♥♥♥♥♥[ANN]HackCoin♥X11♥ONLY 4DAY POW♥POS♥♥♥♥사랑해요♥♥♥♥20G net hash♥♥♥♥♥♥ on: May 07, 2014, 09:03:07 AM
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

Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!