create account

How to compile your very own Devcoin Wallet in Ubuntu 18.04 πŸ’ͺ πŸ’» πŸ’Ύ by cpol

View this thread on: hive.blogpeakd.comecency.com
· @cpol · (edited)
$0.20
How to compile your very own Devcoin Wallet in Ubuntu 18.04 πŸ’ͺ πŸ’» πŸ’Ύ
<center>https://i57.servimg.com/u/f57/13/44/18/95/compil14.jpg</center>
**For a Spanish version of this article** [click here please](https://steemit.com/busy/@cpol/como-compilar-tu-propia-billetera-devcoin-en-ubuntu-18-04) πŸ‘ˆπŸ‘ˆπŸ‘ˆ  

<div class="text-justify">
What a wonderful season to enter in the magical world of Free Software/Open Source World (FLOSS) and cryptocoins!

<p></p>
Many people are attracted to the cryptocoin world for different reasons. Some want to tinker with something new like the blockchain or maybe you want to make some extra coins to complement your income. It doesn’t really matter why you are here, but maybe you are struggling to enter and you don’t know how to test the waters.  That makes Devcoin a great entrance into this world without much hassle and it is a good entry coin for those with zero experience, as well as an interesting investment for those more knowledgeable on this topic. 
<p></p>
For that reason, I think the FLOSS approach for me is ideal, because it can teach you the basics and with patience you can achieve a lot. In that sense, for this tutorial I will be using a Kubuntu 18.04 LTS OS as a starting point to compile our wallet, but any Ubuntu flavor would do without any problem. Heck!, I even think that any Debian-based Distribution can be used following these steps. 
<p></p>
The scope of this tutorial is basically for people who haven’t compiled something before, however, I’m aware that this may appear cumbersome for the very beginner. I will try to make it the more simple I can and show you with pictures and clear steps what you can do.  For those who are more advanced and seasoned in compiling software, you may find this a little bit boring, but I will try to highlight  the main steps to make it faster to follow. For you, advanced user, at the end I had included an easy step-by-step guide. 
<p></p>
⚠ **Warning:** It’s important that you try to compile it in a fresh installed environment or at least choose an OS that hasn’t being upgraded yet.  The main reason for this is that if you upgrade from one distribution to another, you could be dragging dependency problems that can give you headaches later. If you happened to be in this situation, you could try to compile it inside a controlled environment like a virtualization program for example, but that would be a subject for another tutorial.


<center>![abstract-3166168_960_720.png](https://steemitimages.com/407x271/https://cdn.pixabay.com/photo/2018/02/19/20/28/abstract-3166168_960_720.png)</center>

## Let’s begin! πŸ’»


You basically will need three things once inside the computer OS: A terminal or command line, a bunch of tools that can be installed from the command line and the devcoin wallet source code and a some spare time!

1- First, open a terminal, in this case I’m using Konsole from the main program menu (Fig.01).  You can choose any software you like that came with your distribution.

<br><center>https://i57.servimg.com/u/f57/13/44/18/95/screen15.jpg</center><center>*Fig.01 Open the terminal*</center><br> 

2- Once it has opened up (Fig.02), you need to install first these new packages (Fig.03):

```sudo apt-get install git libdb++-dev libdb-dev libboost-all-dev build-essential libtool pkg-config libssl-dev```

<br><center>https://i57.servimg.com/u/f57/13/44/18/95/screen14.jpg</center><center>*Fig.02 Here we are going to execute everything!*</center><br> 

<br><center>https://i57.servimg.com/u/f57/13/44/18/95/screen12.png</center><center>*Fig.03 The tools that we need*</center><br> 

Once the installation has finished, and everything looks fine and dandy, we can now download the source code!

I strongly recommend you to try a stable branch. Nevertheless, this can be done with any cutting-edge source code inside the devcoin wallet repository.

3- There are two ways to download it. The simplest one is downloading it through git and the second one is downloading it as a zip file.  In order to do it through git we use the same terminal window and write the following command:

```git clone https://github.com/devcoin/core.git```

If you want you can go to https://github.com/devcoin/core/archive/master.zip and unzipit anywhere you want. 

For the sake of this tutorial, we will continue as if we have used the git method (Fig.04).

<br><center>https://i57.servimg.com/u/f57/13/44/18/95/screen13.png</center><center>*Fig.04 Downloading the source code...*</center><br> 

4- Once the program has been downloaded, you can enter the directory writing in your terminal:

```cd core/```

In there you can see using the command ```ls``` a bunch of files and more directories.  The blue ones are directories and the white ones plain files.

5- Now write the  following command:

```cd src/```

This command will take you into the main source program directory, where the compiling of the core wallet, called devcoind, will be built (Fig.05).

<br><center>https://i57.servimg.com/u/f57/13/44/18/95/screen15.png</center><center>*Fig.05 First enter in core, then in src and finally execute the ls command to watch what’s inside*</center><br> 
6- As a way to assure you that the main branch is cleaned of a previous compilation, you should always execute the following command:

```make -f makefile.unix clean```

Usually when the source code has just been downloaded, it came with nothing and it will give you an error, but that’s fine (Fig.06). This step is necessary to assess that the source code hasn’t been compiled before, so if at this point you got an error, it’s because it’s clean! Yay! πŸ‘  However, it’s useful to always execute this step as a way to assure yourself to correctly setup the code before compile anything. It’s a good practice in my opinion. πŸ˜‰

<br><center>https://i57.servimg.com/u/f57/13/44/18/95/screen14.png</center><center>*Fig.06 That error does look like a bad thing, but it isn’t. So, don’t worry!*</center><br> 

7- Then we will begin the real deal. Inside the terminal enter the following command: 

```make -f makefile.unix USE_UPNP=-```

Now, this will take some time depending on your computer or your configuration. Usually in a slow computer it will take around 30 minutes to compile, or two hours in a virtualization environment using a slow computer.  Maybe you got a cutting-edge computer with a great performance and probably will take it much less time to compile the source code, but for this tutorial, expect at least 30 minutes. (Fig.07)

<br><center>https://i57.servimg.com/u/f57/13/44/18/95/screen16.png</center><center>*Fig.07 We are compiling, humans...*</center><br> 

When it finishes, it’s done! You won’t see any message, it just returns to the command line without any problem! (Fig.08) If it ends with an error, it probably is because of a dependency problem or you need another package that isn’t installed correctly, 😡 but hopefully if you followed these steps, you won’t find any. Fingers crossed! 🀞🀞🀞

<br><center>https://i57.servimg.com/u/f57/13/44/18/95/screen18.png</center><center>*Fig.08 The compilation process’s end: Note it finishes returning to the command line without any error on display*</center><br> 

8- To finish the devcoind compilation we will write the following command:

```strip devcoind```

That removes symbols from the object files, that in other words is to get rid of things not necessary for the compilation process, slimming down the binary file.

Now, we have to compile the GUI! Without it, you are stuck with the command line and we don’t want that huh? πŸ€“

9- So, in order to compile the GUI, we need new dependencies installed. So, we write the following command:

```sudo apt-get install libqt4-dev qt4-qmake libqt5gui5 libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev libminiupnpc-dev libpng-dev libqrencode-dev```

10- Once it finishes, we need to go back to the ```core/``` directory and exit the ```src/``` directory. To accomplish that, we need to write the following command:

```cd ..```

* Note that the space between cd and the two dots is required!

11- Now we need to prepare the compiler and tell it what settings do we need (Fig.09).  For that, we write the following command:

```qmake USE_UPNP=1 USE_DBUS=1 USE_QRCODE=1```

It will show you a bunch of letters, symbols and numbers, just like before: It will swiftly give you back control of the command line. And of course, that’s perfectly fine!

<br><center>https://i57.servimg.com/u/f57/13/44/18/95/screen17.png</center><center>*Fig.09 Preparing the GUI: This command also ends silently, without errors, maybe some warnings, though.*</center><br> 

Now to compile the GUI!

12- Enter the following command in the terminal

```make```

And that’s it! (Fig.10) It will be much faster than compiling devcoind, but once it has ended you can use the command ```ls``` to see a list of files and names as before, but now you will see a green file called devcoin-qt (Fig.11) That’s how the system shows an executable file.

<br><center>https://i57.servimg.com/u/f57/13/44/18/95/screen20.png</center><center>*Fig.10 Successfully compiled! Look how it returned without error to the command line, once it has finished to compile.*</center><br> 

<br><center>https://i57.servimg.com/u/f57/13/44/18/95/screen19.png</center><center>*Fig.11 This green guy here is a binary file, and it will run in your system when you execute it.*</center><br> 

In order to execute it, you have to write the following command in your terminal:

```./devcoin-qt```

The dot and the slash before an executable file name tell to the system that you want to run that file.  

And now you can see the handsome wallet working! (Fig.12) 😎  To download the blockchain completely, it will depend on your Internet speed.  The blockchain size is around 2GB in size, so, it could take from 30 minutes to five hours (Fig.13).  The good news is, you don’t have to wait for the whole blockchain at once, you can close the wallet and continue later and it will pickup where it left, so don’t worry about the time, but take note in case you don’t have much space left in your hard drive (Fig.14).

<br><center>https://i57.servimg.com/u/f57/13/44/18/95/screen16.jpg</center><center>*Fig.12 Execute the ./devcoin-qt command and look how it runs!*</center><br> 

<br><center>https://i57.servimg.com/u/f57/13/44/18/95/screen17.jpg</center><center>*Fig.13 Keep in mind that synching the wallet will take time, so patience is your friend.*</center><br> 

<br><center>https://i57.servimg.com/u/f57/13/44/18/95/screen21.png</center><center>*Fig.14 The synchronized wallet is ready. Enjoy!*</center><br> 

<center>![abstract-3166168_960_720.png](https://steemitimages.com/407x271/https://cdn.pixabay.com/photo/2018/02/19/20/28/abstract-3166168_960_720.png)</center>

Well, I hope you have found this tutorial helpful and I will try to write more in the future. Just tell me what you want and if you like it, what things can be improved or anything you want!

Keep steeming! πŸ‘‹πŸ‘‹πŸ‘‹πŸ‘‹

---

| Table guide: Steps for compiling|
|------------------------|
|1. Open a terminal |
|2. Installing dependencies: ```sudo apt-get install git libdb++-dev libdb-dev libboost-all-dev build-essential libtool pkg-config libssl-dev```|
|3. Download the code: ```git clone https://github.com/devcoin/core.git```|
|4. Enter the source code directory with ```cd core/src```|
|5. Clean before begin: ```make -f makefile.unix clean```|
|6. Begin compile devcoind: ```make -f makefile.unix USE_UPNP=-```|
|7. Remove unused symbols: ```strip devcoind```|
|8. Install GUI dependencies ```sudo apt-get install libqt4-dev qt4-qmake libqt5gui5 libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev libminiupnpc-dev libpng-dev libqrencode-dev```|
|9. Get out of the source code directory using ```cd ..```|
|10. Prepare the compiler for the GUI ```qmake USE_UPNP=1 USE_DBUS=1 USE_QRCODE=1```|
|11. Execute ```make```|
|12. Enjoy!|

_This article is licensed by @cpol under [CC-BY-SA 3.0](https://creativecommons.org/licenses/by-sa/3.0/) license. September 24th 2018_ ✍

### References:
Ctya. (2018, September 5). Failed compilation from source #2 Β· Issue #56 Β· devcoin/core [Github comments]. Retrieved September 22, 2018, from (https://github.com/devcoin/core/issues/56#issuecomment-418958715)
GDJ. (2018, February 19). Free Image on Pixabay - Abstract, Decorative, Divider [Stock images]. Retrieved September 22, 2018, from (https://pixabay.com/en/abstract-decorative-divider-fancy-3166168/)
</div>
πŸ‘  , , , , , , , , , , , , , , , , , , ,
properties (23)
authorcpol
permlinkhow-to-compile-your-very-own-devcoin-wallet-in-ubuntu-18-04
categorybusy
json_metadata{"tags":["busy","devcoin","altcoin","cryptocurrency","tutorial"],"users":["cpol"],"image":["https://i57.servimg.com/u/f57/13/44/18/95/compil14.jpg","https://steemitimages.com/407x271/https://cdn.pixabay.com/photo/2018/02/19/20/28/abstract-3166168_960_720.png","https://i57.servimg.com/u/f57/13/44/18/95/screen15.jpg","https://i57.servimg.com/u/f57/13/44/18/95/screen14.jpg","https://i57.servimg.com/u/f57/13/44/18/95/screen12.png","https://i57.servimg.com/u/f57/13/44/18/95/screen13.png","https://i57.servimg.com/u/f57/13/44/18/95/screen15.png","https://i57.servimg.com/u/f57/13/44/18/95/screen14.png","https://i57.servimg.com/u/f57/13/44/18/95/screen16.png","https://i57.servimg.com/u/f57/13/44/18/95/screen18.png","https://i57.servimg.com/u/f57/13/44/18/95/screen17.png","https://i57.servimg.com/u/f57/13/44/18/95/screen20.png","https://i57.servimg.com/u/f57/13/44/18/95/screen19.png","https://i57.servimg.com/u/f57/13/44/18/95/screen16.jpg","https://i57.servimg.com/u/f57/13/44/18/95/screen17.jpg","https://i57.servimg.com/u/f57/13/44/18/95/screen21.png"],"links":["https://steemit.com/busy/@cpol/como-compilar-tu-propia-billetera-devcoin-en-ubuntu-18-04","https://creativecommons.org/licenses/by-sa/3.0/","https://github.com/devcoin/core/issues/56#issuecomment-418958715","https://pixabay.com/en/abstract-decorative-divider-fancy-3166168/"],"app":"steemit/0.1","format":"markdown"}
created2018-09-24 20:16:51
last_update2018-10-01 16:37:51
depth0
children25
last_payout2018-10-01 20:16:51
cashout_time1969-12-31 23:59:59
total_payout_value0.150 HBD
curator_payout_value0.045 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12,450
author_reputation60,967,878,593,049
root_title"How to compile your very own Devcoin Wallet in Ubuntu 18.04 πŸ’ͺ πŸ’» πŸ’Ύ"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id72,160,294
net_rshares144,545,940,618
author_curate_reward""
vote details (20)
@devcoin ·
Congratulations for this detailed tutorial :)

Let's compile your wallets!
πŸ‘  ,
properties (23)
authordevcoin
permlinkre-cpol-how-to-compile-your-very-own-devcoin-wallet-in-ubuntu-18-04-20180924t220719949z
categorybusy
json_metadata{"tags":["busy"],"app":"steemit/0.1"}
created2018-09-24 22:07:21
last_update2018-09-24 22:07:21
depth1
children1
last_payout2018-10-01 22:07:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length74
author_reputation346,183,644,846
root_title"How to compile your very own Devcoin Wallet in Ubuntu 18.04 πŸ’ͺ πŸ’» πŸ’Ύ"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id72,167,706
net_rshares11,198,400,320
author_curate_reward""
vote details (2)
@cpol ·
Thank you very much! Glad you liked it!
properties (22)
authorcpol
permlinkre-devcoin-re-cpol-how-to-compile-your-very-own-devcoin-wallet-in-ubuntu-18-04-20180924t224830744z
categorybusy
json_metadata{"tags":["busy"],"app":"steemit/0.1"}
created2018-09-24 22:48:33
last_update2018-09-24 22:48:33
depth2
children0
last_payout2018-10-01 22:48:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation60,967,878,593,049
root_title"How to compile your very own Devcoin Wallet in Ubuntu 18.04 πŸ’ͺ πŸ’» πŸ’Ύ"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id72,170,251
net_rshares0
@devcoin ·
Great post! Accepted for Round 83.

Posts for rounds 84 to 86 still pending.
πŸ‘  ,
properties (23)
authordevcoin
permlinkre-cpol-how-to-compile-your-very-own-devcoin-wallet-in-ubuntu-18-04-20181003t221949150z
categorybusy
json_metadata{"tags":["busy"],"app":"steemit/0.1"}
created2018-10-03 22:19:51
last_update2018-10-03 22:19:51
depth1
children1
last_payout2018-10-10 22:19:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length76
author_reputation346,183,644,846
root_title"How to compile your very own Devcoin Wallet in Ubuntu 18.04 πŸ’ͺ πŸ’» πŸ’Ύ"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id72,573,862
net_rshares9,255,730,167
author_curate_reward""
vote details (2)
@cpol ·
Yay! Wonderful @devcoin!
properties (22)
authorcpol
permlinkre-devcoin-re-cpol-how-to-compile-your-very-own-devcoin-wallet-in-ubuntu-18-04-20181004t034224345z
categorybusy
json_metadata{"tags":["busy"],"users":["devcoin"],"app":"steemit/0.1"}
created2018-10-04 03:42:30
last_update2018-10-04 03:42:30
depth2
children0
last_payout2018-10-11 03:42:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation60,967,878,593,049
root_title"How to compile your very own Devcoin Wallet in Ubuntu 18.04 πŸ’ͺ πŸ’» πŸ’Ύ"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id72,586,509
net_rshares0
@develcuy · (edited)
For those trying to build Devcoin 0.8.9.0, add the following to step 2:

    $ sudo apt install zlib1g-dev

Also, the correct command line at step 10 is:

    $ qmake USE_UPNP=1 USE_DBUS=1 USE_QRCODE=1 devcoin-qt.pro
πŸ‘  
properties (23)
authordevelcuy
permlinkr3uvbv
categorybusy
json_metadata{"app":"hiveblog/0.1"}
created2021-12-09 16:04:48
last_update2021-12-09 16:31:09
depth1
children0
last_payout2021-12-16 16:04:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length216
author_reputation4,853,554,441,622
root_title"How to compile your very own Devcoin Wallet in Ubuntu 18.04 πŸ’ͺ πŸ’» πŸ’Ύ"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id108,411,612
net_rshares813,383,907
author_curate_reward""
vote details (1)
@fuzzybearbtc ·
Really nice guide here great article and lovely to see this translated in Spanish as well, keep up the great work :)
πŸ‘  ,
properties (23)
authorfuzzybearbtc
permlinkre-cpol-how-to-compile-your-very-own-devcoin-wallet-in-ubuntu-18-04-20181003t134412830z
categorybusy
json_metadata{"tags":["busy"],"app":"steemit/0.1"}
created2018-10-03 13:44:18
last_update2018-10-03 13:44:18
depth1
children1
last_payout2018-10-10 13:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length116
author_reputation4,899,898,871
root_title"How to compile your very own Devcoin Wallet in Ubuntu 18.04 πŸ’ͺ πŸ’» πŸ’Ύ"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id72,547,156
net_rshares1,704,876,430
author_curate_reward""
vote details (2)
@cpol ·
Thank you@fuzzzybearbtc! Glad you like it!!!
properties (22)
authorcpol
permlinkre-fuzzybearbtc-re-cpol-how-to-compile-your-very-own-devcoin-wallet-in-ubuntu-18-04-20181003t155331581z
categorybusy
json_metadata{"tags":["busy"],"app":"steemit/0.1"}
created2018-10-03 15:53:33
last_update2018-10-03 15:53:33
depth2
children0
last_payout2018-10-10 15:53:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length44
author_reputation60,967,878,593,049
root_title"How to compile your very own Devcoin Wallet in Ubuntu 18.04 πŸ’ͺ πŸ’» πŸ’Ύ"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id72,555,610
net_rshares0
@novacadian ·
Would you have any ideas, @cpol, why my old wallet (previously installed using this guide) would now be complaining about the present version of libboost? Perhaps it has to be re-compiled with a more updated version which may have happened since last use, which was some time ago? Below is some feedback from the system that may give you an idea...

<PRE>
./devcoin-qt: error while loading shared libraries: libboost_system.so.1.58.0: cannot open shared object file: No such file or directory
</PRE>
<PRE>
nova@nova-desktop:~/CryptoWallets/DVC-backup$ sudo apt-get install libboost-dev libboost-system-dev libboost-filesystem-dev libboost-thread-dev
Reading package lists... Done
Building dependency tree       
Reading state information... Done
libboost-dev is already the newest version (1.65.1.0ubuntu1).
libboost-filesystem-dev is already the newest version (1.65.1.0ubuntu1).
libboost-system-dev is already the newest version (1.65.1.0ubuntu1).
libboost-thread-dev is already the newest version (1.65.1.0ubuntu1).
0 upgraded, 0 newly installed, 0 to remove and 112 not upgraded.
</PRE>
πŸ‘  ,
properties (23)
authornovacadian
permlinkq0tgvy
categorybusy
json_metadata{"users":["cpol"],"app":"steemit/0.1"}
created2019-11-11 18:04:45
last_update2019-11-11 18:04:45
depth1
children12
last_payout2019-11-18 18:04:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,090
author_reputation26,836,051,225,391
root_title"How to compile your very own Devcoin Wallet in Ubuntu 18.04 πŸ’ͺ πŸ’» πŸ’Ύ"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id92,408,333
net_rshares22,482,724,513
author_curate_reward""
vote details (2)
@cpol ·
$0.03
Unfortunately,  I don't have any idea. My library versions are exactly the same as yours and I could compile the source code from main without problem.  

Are you using the main branch or another branch? Could you try with fresh install in a virtual machine like virtual box if you can reproduce the problem?
πŸ‘  
properties (23)
authorcpol
permlinkq0ti5p
categorybusy
json_metadata{"app":"steemit/0.1"}
created2019-11-11 18:32:12
last_update2019-11-11 18:32:12
depth2
children11
last_payout2019-11-18 18:32:12
cashout_time1969-12-31 23:59:59
total_payout_value0.016 HBD
curator_payout_value0.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length308
author_reputation60,967,878,593,049
root_title"How to compile your very own Devcoin Wallet in Ubuntu 18.04 πŸ’ͺ πŸ’» πŸ’Ύ"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id92,409,032
net_rshares192,247,893,323
author_curate_reward""
vote details (1)
@novacadian ·
Started a fresh install and after Step 7 received the following errors:

<PRE>
curl/lib/.libs/libcurl.a(libcurl_la-url.o): In function `fix_hostname.isra.6':
url.c:(.text+0x3e8): undefined reference to `idn2_check_version'
url.c:(.text+0x405): undefined reference to `idn2_lookup_ul'
url.c:(.text+0x450): undefined reference to `idn2_strerror'
curl/lib/.libs/libcurl.a(libcurl_la-url.o): In function `Curl_disconnect':
url.c:(.text+0xd9c): undefined reference to `idn2_free'
url.c:(.text+0xdb8): undefined reference to `idn2_free'
url.c:(.text+0xdd4): undefined reference to `idn2_free'
url.c:(.text+0xdf0): undefined reference to `idn2_free'
curl/lib/.libs/libcurl.a(libcurl_la-url.o): In function `Curl_connect':
url.c:(.text+0x3da7): undefined reference to `idn2_free'
curl/lib/.libs/libcurl.a(libcurl_la-url.o):url.c:(.text+0x3dc3): more undefined references to `idn2_free' follow
curl/lib/.libs/libcurl.a(libcurl_la-version.o): In function `curl_version.part.0':
version.c:(.text+0x6f): undefined reference to `idn2_check_version'
version.c:(.text+0x7b): undefined reference to `idn2_check_version'
curl/lib/.libs/libcurl.a(libcurl_la-version.o): In function `curl_version_info.part.1':
version.c:(.text+0xfa): undefined reference to `idn2_check_version'
collect2: error: ld returned 1 exit status
makefile.unix:189: recipe for target 'devcoind' failed
make: *** [devcoind] Error 1
</PRE>

Although it did not seem likely to be successful the attempt at the GUI compile was attempted and the following error was returned...

<PRE>
collect2: error: ld returned 1 exit status
Makefile:525: recipe for target 'devcoin-qt' failed
make: *** [devcoin-qt] Error 1
</PRE>

During compilations a lot more errors were noticed in the course of the compiling than were remembered from previous compiles. 

When is the last time that you have done a compile from scratch, @cpol? The code itself is beginning to come into question for me.
πŸ‘  
properties (23)
authornovacadian
permlinkq10rii
categorybusy
json_metadata{"users":["cpol"],"app":"steemit/0.1"}
created2019-11-15 16:37:30
last_update2019-11-15 16:37:30
depth3
children10
last_payout2019-11-22 16:37:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,929
author_reputation26,836,051,225,391
root_title"How to compile your very own Devcoin Wallet in Ubuntu 18.04 πŸ’ͺ πŸ’» πŸ’Ύ"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id92,528,777
net_rshares632,931,828
author_curate_reward""
vote details (1)
@novacadian ·
A wonderful guide, @cpol. Managed to get a new wallet running under Ubuntu 16.xx. Thank you! 😎
πŸ‘  
properties (23)
authornovacadian
permlinkre-cpol-how-to-compile-your-very-own-devcoin-wallet-in-ubuntu-18-04-20180926t162820997z
categorybusy
json_metadata{"tags":["busy"],"users":["cpol"],"app":"steemit/0.1"}
created2018-09-26 16:28:09
last_update2018-09-26 16:28:09
depth1
children1
last_payout2018-10-03 16:28:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length94
author_reputation26,836,051,225,391
root_title"How to compile your very own Devcoin Wallet in Ubuntu 18.04 πŸ’ͺ πŸ’» πŸ’Ύ"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id72,242,465
net_rshares512,398,245
author_curate_reward""
vote details (1)
@cpol ·
$0.13
I'm so glad @novacadian!Thanks to you for using this guide and resteeming! πŸ˜ƒπŸ˜ƒπŸ˜ƒ
πŸ‘  ,
properties (23)
authorcpol
permlinkre-novacadian-re-cpol-how-to-compile-your-very-own-devcoin-wallet-in-ubuntu-18-04-20180926t165602745z
categorybusy
json_metadata{"tags":["busy"],"users":["novacadian"],"app":"steemit/0.1"}
created2018-09-26 16:56:03
last_update2018-09-26 16:56:03
depth2
children0
last_payout2018-10-03 16:56:03
cashout_time1969-12-31 23:59:59
total_payout_value0.097 HBD
curator_payout_value0.031 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length78
author_reputation60,967,878,593,049
root_title"How to compile your very own Devcoin Wallet in Ubuntu 18.04 πŸ’ͺ πŸ’» πŸ’Ύ"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id72,243,514
net_rshares81,426,551,541
author_curate_reward""
vote details (2)
@orimar ·
Nice read. Is it possible to have something written up for a mac OS wallet? as the one on the devcoin.org page isnt the best and I am having issues with mine.
πŸ‘  
properties (23)
authororimar
permlinkre-cpol-how-to-compile-your-very-own-devcoin-wallet-in-ubuntu-18-04-20181229t190310798z
categorybusy
json_metadata{"tags":["busy"],"app":"steemit/0.1"}
created2018-12-29 19:03:12
last_update2018-12-29 19:03:12
depth1
children1
last_payout2019-01-05 19:03:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length158
author_reputation370,460,042
root_title"How to compile your very own Devcoin Wallet in Ubuntu 18.04 πŸ’ͺ πŸ’» πŸ’Ύ"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id77,564,425
net_rshares23,709,442,740
author_curate_reward""
vote details (1)
@cpol ·
Thank you for your kind words. I think is possible, but I'm not familiarized with compiling tools environment in mac OS nor I have a mac OS myself.  Maybe @develcuy could share some light regarding this.  I'm gonna research this around and see if it can be done. Thanks for asking and happy new year!
properties (22)
authorcpol
permlinkre-orimar-re-cpol-how-to-compile-your-very-own-devcoin-wallet-in-ubuntu-18-04-20181229t202837384z
categorybusy
json_metadata{"tags":["busy"],"users":["develcuy"],"app":"steemit/0.1"}
created2018-12-29 20:28:39
last_update2018-12-29 20:28:39
depth2
children0
last_payout2019-01-05 20:28:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length300
author_reputation60,967,878,593,049
root_title"How to compile your very own Devcoin Wallet in Ubuntu 18.04 πŸ’ͺ πŸ’» πŸ’Ύ"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id77,567,651
net_rshares0
@traxo · (edited)
Heads-up that error appears as of recently, so blockchain doesn't update properly - i.e. it's stuck at block 3999 (at first) if you just installed wallet by following this guide or some later block depending on your last receiver file.  

To fix it, you need to manually download receiver files (e.g. from https://github.com/devcoin/receivers - apparently all receiver files, or https://galaxies.mygamesonline.org/receiver_files.zip which has only 80 files tho) and then put them inside your receivers folder e.g. `~/.devcoin/receivers` folder (you can only download the ones you are missing). Then restart the wallet and it should start syncing properly.  

Some more discussion with regards to the issue:  
https://bitcointalk.org/index.php?topic=233997.msg50510377#msg50510377
properties (22)
authortraxo
permlinkre-cpol-how-to-compile-your-very-own-devcoin-wallet-in-ubuntu-18-04-20190414t221326740z
categorybusy
json_metadata{"tags":["busy"],"links":["https://github.com/devcoin/receivers","https://bitcointalk.org/index.php?topic=233997.msg50510377#msg50510377"],"app":"steemit/0.1"}
created2019-04-14 22:13:27
last_update2019-04-14 22:19:12
depth1
children0
last_payout2019-04-21 22:13:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length779
author_reputation6,745,697,169
root_title"How to compile your very own Devcoin Wallet in Ubuntu 18.04 πŸ’ͺ πŸ’» πŸ’Ύ"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,102,563
net_rshares0