Post
Topic
Board Announcements (Altcoins)
Re: [BBR] Boolberry: Privacy and Security - Guaranteed Since 2014
by
crypto_zoidberg
on 20/10/2018, 02:22:06 UTC
...
Try just doing
Code:
make daemon
and
Code:
make simplewallet
so it skips the tests that fail. Maybe
Code:
make qt-boolbd
if you are trying to make that.
In tests/CMakeLists.txt, the ones that are failing need
Code:
zlibstatic
added to their target_link_libraries lines

It's running fine now. Did change the following three lines in "tests/CMakeLists.txt":

Quote
target_link_libraries(functional_tests zlibstatic currency_core wallet common crypto upnpc-static ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})
target_link_libraries(unit_tests zlibstatic currency_core common wallet crypto gtest_main lmdb ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})
target_link_libraries(exchange_test zlibstatic ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})


Thanks a lot for posting solution, we were quite busy these days, I just pushed this update which fixes the issue.
Anyone is welcome to pull-request in this situations.