Author

Topic: Compile wallet for any coin in Ubuntu (Read 4653 times)

newbie
Activity: 16
Merit: 0
January 30, 2018, 06:59:07 AM
#4
I am trying to compile a wallet for redcoin in linux, using this instructions. However, I am getting the following error when running the make command: src/util.h:22:28: fatal error: boost/thread.hpp: No such file or directory compilation terminated.

Any suggestions?
hero member
Activity: 750
Merit: 500
April 27, 2014, 01:19:10 PM
#3
make sure you have dependencies and they are upto date

Code:
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install libssl-dev libdb-dev libdb++-dev libqrencode-dev qt4-qmake libqtgui4 libqt4-dev git
sudo apt-get install libminiupnpc-dev libminiupnpc8 libboost-all-dev build-essential git  libboost1.48-all-dev

Next clone the source code from github replacing the dogecoin github with whatever other alt

Code:
git clone https://github.com/dogecoin/dogecoin

If you want to install the QT (GUI) Wallet

Code:
cd dogecoin
qmake USE_UPNP=-
make
once compiled you can double click on Dogecoin-QT or whatever-QT and the wallet will run

If you want the Daemon (Non-Gui)

Code:
cd dogecoin/src
make -f makefile.unix USE_UPNP=-
to run the daemon make sure you are in the src folder and type
Code:
./dogecoind

that's pretty much it
full member
Activity: 210
Merit: 101
★Bitvest.io★ Play Plinko or Invest!
April 27, 2014, 01:16:56 PM
#2
cd src
make -f makefile.unix
cd ../
gmake
make


You might need to use qmake4 & edit the qt.pro file
full member
Activity: 182
Merit: 100
KryptKoin is one of the best!!!
April 27, 2014, 12:46:41 PM
#1
Can someone please explain how can I compile any wallet in Ubuntu?
Thanks.
Jump to: