lbryio / lbrycrd

The blockchain that provides the digital content namespace for the LBRY protocol
https://lbry.com
MIT License
2.58k stars 178 forks source link

Build fails > txdb.cpp:20:10: fatal error: boost/thread/interruption.hpp: No such file or directory #384

Closed ma7555 closed 4 years ago

ma7555 commented 4 years ago
txdb.cpp:20:10: fatal error: boost/thread/interruption.hpp: No such file or directory
 #include <boost/thread/interruption.hpp>
          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
Makefile:7128: recipe for target 'libbitcoin_server_a-txdb.o' failed

How to fix?

tzarebczan commented 4 years ago

Sorry to hear about the trouble. Which is are you on? Have you followed https://github.com/lbryio/lbrycrd/blob/v19_master/README.md#running-from-source

Probably easier to run the latest binary: https://github.com/lbryio/lbrycrd/releases/tag/v0.17.3.2

If building from source, this is the last release tag: https://github.com/lbryio/lbrycrd/tree/v0.17.3.2

BrannonKing commented 4 years ago

The boost thread library is required. You can use build.sh to automatically download it or install a not-too-old version of boost-dev on your local system.

ma7555 commented 4 years ago

okay, thanks will install it.