...
Try just doing
make daemon
and
make simplewallet
so it skips the tests that fail. Maybe
make qt-boolbd
if you are trying to make that.
In tests/CMakeLists.txt, the ones that are failing need
zlibstatic
added to their target_link_libraries lines
It's running fine now. Did change the following three lines in "tests/CMakeLists.txt":
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})