Dobbcoin 2.0 - We're getting tha band back together

Next Generation Dobbscoin => DobbsCoin v2.0 - Econocalypse (QUARK POW/POS+[MN]) => Topic started by: EndCiv on March 08, 2019, 10:22:20 PM

Title: How do I compile a daemon for linux
Post by: EndCiv on March 08, 2019, 10:22:20 PM
Update your machine.

sudo apt-get update
sudo apt-get upgrade

Install the required dependencies.

sudo apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils python3 libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-test-dev libboost-thread-dev libboost-all-dev libboost-program-options-dev
sudo apt-get install libminiupnpc-dev libzmq3-dev libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler libqrencode-dev unzip

Install Berkeley DB from source code.

wget https://download.oracle.com/berkeley-db/db-4.8.30.zip
unzip db-4.8.30.zip
cd db-4.8.30
cd build_unix/
../dist/configure --prefix=/usr/local --enable-cxx
make
sudo make install

Clone the source code from git.

git clone https://github.com/dobbscoin/dobbscoin-econocalypse.git

cd econocalypse
chmod 744 share/genbuild.sh
chmod 744 src/leveldb/build_detect_platform

Building for linux
Execute the following commands to compile the daemon.


chmod 744 autogen.sh
./autogen.sh
./configure --with-unsupported-ssl
make