Skip to content

Instantly share code, notes, and snippets.

@ivodvb
Forked from mjmacleod/Ubuntu_16.04.4.txt
Created September 20, 2017 09:05
Show Gist options
  • Save ivodvb/e6456c2ee4b5aecb97ff208953df187a to your computer and use it in GitHub Desktop.
Save ivodvb/e6456c2ee4b5aecb97ff208953df187a to your computer and use it in GitHub Desktop.
Build GuldenD on Ubuntu 16.04.1
sudo apt-get install libssl-dev libevent-dev build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils python-dev libxml2-dev libxslt-dev libbz2-dev
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install libdb4.8-dev libdb4.8++-dev
git clone https://github.com/Gulden/gulden-official.git
cd gulden-official/
git checkout old_autotools
sudo mkdir /boost166 && sudo chmod -R a+rwx /boost166 && wget https://sourceforge.net/projects/boost/files/boost/1.61.0/boost_1_61_0.tar.bz2 && tar -xvf boost_1_61_0.tar.bz2 && cd boost_1_61_0/ && ./bootstrap.sh && ./b2 --prefix=/boost166 cxxflags=-fPIC cflags=-fPIC link=static install
cd ..
./autogen.sh
./configure --with-boost=/boost166/ LDFLAGS="-L/boost166/lib/" CPPFLAGS="-I/boost166/include"
make V=1 -j4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment