Advertisement
Guest User

Untitled

a guest
Dec 16th, 2013
518
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. Tuso's dogecoin ubuntu linux compile and run guide.
  2. such nice!
  3.  
  4. sudo apt-get install git
  5. cd ~
  6. mkdir src
  7. cd src
  8. git clone https://github.com/dogecoin/dogecoin
  9.  
  10. sudo apt-get install build-essential libssl-dev libdb-dev libdb++-dev libboost-all-dev
  11. hit Y
  12. sudo apt-get install libdb-dev libdb++-dev libboost-all-dev
  13. hit Y
  14. sudo apt-get install libqrencode-dev qt4-qmake libqtgui4 libqt4-dev
  15. hit Y
  16.  
  17. nano ~/src/dogecoin/dogecoin-qt.pro
  18. and change the line that says:
  19. LIBS += -lboost_system-mgw46-mt-sd-1_53 -lboost_filesystem-mgw46-mt-sd-1_53 -lboost_program_options-mgw46-mt-sd-1_53 -lboost_thread-mgw46-mt-sd-1_53
  20. into:
  21. LIBS += -lboost_system -lboost_filesystem -lboost_program_options -lboost_thread
  22.  
  23. BOOST_LIB_SUFFIX=-mgw46-mt-sd-1_53
  24. change to:
  25. BOOST_LIB_SUFFIX=
  26.  
  27. delete or comment out (with #'s in front) the following:
  28. isEmpty(BOOST_LIB_SUFFIX) {
  29. macx:BOOST_LIB_SUFFIX = -mt
  30. windows:BOOST_LIB_SUFFIX = -mgw44-mt-s-1_53
  31. }
  32.  
  33. ctrl+o to write the file and ctrl+x to exit nano
  34.  
  35. cd ~/src/dogecoin
  36. qmake USE_UPNP=- USE_QRCODE=0 USE_IPV6=0
  37.  
  38. Ignore these messages:
  39. Project MESSAGE: Building without UPNP support
  40. Project MESSAGE: Building with UPNP supportRemoved plural forms as the target language has less forms.
  41. If this sounds wrong, possibly the target language is not set or recognized.
  42.  
  43. Build it with:
  44. make
  45.  
  46. wait awhile and when done you should see file "dogecoin-qt" in ~/src/dogecoin/
  47.  
  48. Run it with:
  49. ./dogecoin
  50.  
  51. was help? send much thanks!
  52. D7Qf5fapkzTYDexzH2hhu9hDtzjjixAJxp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement