I get this error when i try to compile dash from master branch:
In file included from evo/deterministicmns.h:9,
from activemasternode.h:14,
from activemasternode.cpp:5:
./bls/bls.h:14:10: fatal error: chiabls/bls.hpp: No such file or directory
#include <chiabls/bls.hpp>
^~~~~~~~~~~~~~~~~
I searched and there is no package in debian that contains this file.
This is my configure:
./configure --with-incompatible-bdb --with-gui=no --disable-tests --disable-bench --without-miniupnpc --disable-zmq --disable-wallet
check out this link.
https://github.com/dashpay/dash/issues/2635
you need to download compile the bls package. scroll down to the following entry by "nasa8x":
I also have a problem with missing this library and how to fix it: Download: https://github.com/codablock/bls-signatures/archive/v20181101.zip �unzip and cmd:
git submodule update --init --recursive mkdir build cd build cmake ../ cmake --build . -- -j 6 sudo make install
when i unzipped, i did the following:
cd v20181101 mkdir build cd build cmake ../ make --j4 sudo make install
Hope this helps.