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
'Importing code requires linking with boost_filesystem and boost_system libraries.
but libdl.so is not in NEEDED section of libboost_system.so, which obviously results with linking error:
/usr/bin/c++ -g -rdynamic CMakeFiles/common-logic.dir/main.cpp.o -o common-logic -lboost_filesystem -lboost_system
/usr/bin/ld: CMakeFiles/common-logic.dir/main.cpp.o: in function boost::dll::detail::reset_dlerror()': /usr/include/boost/dll/detail/system_error.hpp:27: undefined reference to dlerror'
(and for all other functions: dlopen, dlsym etc)
Please either update guideline to inform users to link their relevant OS library themselves, or maybe add said OS library (libdl.so, other OS equivalent) as library dependency for boost_system so that it's pulled automatically.
The text was updated successfully, but these errors were encountered:
'Getting started' page says:
but libdl.so is not in NEEDED section of libboost_system.so, which obviously results with linking error:
(and for all other functions: dlopen, dlsym etc)
Please either update guideline to inform users to link their relevant OS library themselves, or maybe add said OS library (libdl.so, other OS equivalent) as library dependency for boost_system so that it's pulled automatically.
The text was updated successfully, but these errors were encountered: