Post
Topic
Board Development & Technical Discussion
Merits 4 from 2 users
Re: why got a so big size wallet client during compile wallet in ubuntu
by
achow101
on 17/01/2019, 17:30:37 UTC
⭐ Merited by Foxpup (2) ,aliashraf (2)
That is not abnormal. The reason the binary is so large is because it contains debugging symbols. It is not stripped. If you do
Code:
strip src/qt/xxxcoin-qt
the binary will become much smaller. That removes all of the debugging symbols.