You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-- Looking for __gcov_flush in gcov
-- Looking for __gcov_flush in gcov - not found
-- Looking for C++ include valgrind/memcheck.h
-- Looking for C++ include valgrind/memcheck.h - not found
-- Looking for pow
-- Looking for pow - not found
-- Looking for pow
-- Looking for pow - not found
CMake Error at contrib/db/libmdbx/CMakeLists.txt:164 (message):
No libm found for math support
My cmake command includes a few custom settings so that I can use my system libraries (boost, openssl) with dynamic linking:
-- Looking for __gcov_flush in gcov
-- Looking for __gcov_flush in gcov - not found
-- Looking for C++ include valgrind/memcheck.h
-- Looking for C++ include valgrind/memcheck.h - not found
-- Looking for pow
-- Looking for pow - not found
-- Looking for pow
-- Looking for pow - not found
CMake Error at contrib/db/libmdbx/CMakeLists.txt:164 (message):
No libm found for math support
My cmake command includes a few custom settings so that I can use my system libraries (boost, openssl) with dynamic linking:
cmake -DBoost_NO_BOOST_CMAKE=TRUE -DBoost_USE_STATIC_LIBS=FALSE -DDISABLE_TOR=TRUE -DBUILD_GUI=FALSE -DOPENSSL_INCLUDE_DIR:FILEPATH=/usr/include/openssl -DOPENSSL_CRYPTO_LIBRARY:FILEPATH=/usr/lib64/libcrypto.so -DOPENSSL_SSL_LIBRARY:FILEPATH=/usr/lib64/libssl.so -DBOOST_ROOT:PATHNAME=/usr ..
However, the math library error seems unrelated to these. I'm also using
gcc 12.4.1
cmake 3.31.5
boost 1.87.0
but I get the same issue with gcc 11.5.0 or 13.3.1, and boost 1.84.0.
The text was updated successfully, but these errors were encountered: