conan-equal-newone / yenten

Yenten; cryptocurrency of the cpu, by the cpu, for the cpu
https://conan-equal-newone.github.io/yenten/
MIT License
41 stars 51 forks source link

Yenten ubuntu #10

Open impulsief opened 6 years ago

impulsief commented 6 years ago

yenten_ubuntu64_1.3.1/yentend: error while loading shared libraries: libdb_cxx-4.8.so: cannot open shared object file: No such file or directory I got this error, i already installed libdb5.3, ++ and -dev libraries

Thank you

impulsief commented 6 years ago

i compiled with

./configure --enable-upnp-default --without-gui --disable-tests --with-incompatible-bdb

but again it cant open :(

2pay commented 6 years ago

Try this, it work for me:

wget http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz
tar -xzvf db-4.8.30.NC.tar.gz
cd db-4.8.30.NC/build_unix
../dist/configure --enable-cxx
make
sudo make install

Tell your system where to find db4.8
export BDB_INCLUDE_PATH="/usr/local/BerkeleyDB.4.8/include"
export BDB_LIB_PATH="/usr/local/BerkeleyDB.4.8/lib"
sudo ln -s /usr/local/BerkeleyDB.4.8/lib/libdb-4.8.so /usr/lib/libdb-4.8.so

git clone https://github.com/conan-equal-newone/yenten.git
cd yenten
./autogen.sh
./configure BDB_LIBS="-L${BDB_PREFIX}/lib -ldb_cxx-4.8" BDB_CFLAGS="-I${BDB_PREFIX}/include" --with-incompatible-bdb --enable-upnp-default --without-gui --disable-tests
make