How do I create release build of my new bitcoin wallet?

0

I have created a new alt coin, and now I want to create a executable of my wallet in ubuntu. I don't know how to create a release build wallet with all its dependencies. How I can build my wallet application?

Deepak Chauhan

Posted 2015-03-11T12:39:27.370

Reputation: 31

Not sure if you simply forked bitcoin or not, but I believe this will definitely help you out. https://qt-project.org/search/tag/build

Dhuum 2015-03-11T15:06:38.553

Answers

2

Bitcoin statically links in all of its dependencies by default, because many of them are consensus-critical and cannot accept a different version. Therefore, you can distribute the binaries that make creates.

However, I would recommend setting up gitian deterministic builds.

Nick ODell

Posted 2015-03-11T12:39:27.370

Reputation: 26 536