Ok, upon further inspection I'm pretty certain that the "billerycliton" commits broke compilation on unix. These updates included gui changes, but also removed libraries and attempted to remove irc.h/irc.cpp references, but failed to do so properly. In makefile.unix, I commented out irc.o so compilation didn't immediately fail, however, I still did not have success compiling.
https://pastebin.com/D7y2SWZj.
Most of the errrors are "undefined reference" which means a necessary library is missing.
obj/checkpoints.o: In function `Checkpoints::ValidateSyncCheckpoint(uint256)':
/home/coins/cryptos/BillaryCoinSource/src/checkpoints.cpp:129: undefined reference to `error(char const*, ...)'
/home/coins/cryptos/BillaryCoinSource/src/checkpoints.cpp:114: undefined reference to `error(char const*, ...)'
/home/coins/cryptos/BillaryCoinSource/src/checkpoints.cpp:95: undefined reference to `error(char const*, ...)'
/home/coins/cryptos/BillaryCoinSource/src/checkpoints.cpp:97: undefined reference to `error(char const*, ...)'
/home/coins/cryptos/BillaryCoinSource/src/checkpoints.cpp:110: undefined reference to `error(char const*, ...)'
Furthermore, after reverting to commit SHA 73016b8f82f8e3f557d5872fc0989592dce1f345 I attempted to compile and got another error (
https://github.com/exclusivecoin/Exclusive/issues/1), the solution was
mkdir -p src/obj/zerocoin
chmod +x src/leveldb/build_detect_platform
cd src/leveldb && make libleveldb.a libmemenv.a
Finally, the compiling worked. I am now synchronizing with the BLRY blockchain.
On another note, I noticed that the block explorer is no longer active. Please renew whatever you need to renew.
https://www.blockexperts.com/blryMy theory is that Yobit pulled from master and failed to compile and has been in a state of maintenance since then. Right now the main priority should be making the coin stable for exchanges.