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
{{ message }}
This repository has been archived by the owner on Jul 17, 2023. It is now read-only.
While installing manta v1.6.0, I encountered an error saying /usr/local/include/boost/serialization/set.hpp: error: no type named 'library_version_type' in namespace 'boost::serialization'; did you mean 'item_version_type'?
I found out that adding #include <boost/serialization/library_version_type.hpp>
to the top of /usr/include/boost/serialization/set.hpp file solves the problem
Also
I found out that libdeflate needs to be installed from source (https://github.com/ebiggers/libdeflate)
if installed from apt-get install libdeflate-dev, manta installation keeps failing with error message: undefined reference to libdeflate_crc32`
need to add path where libdeflate.h is located to LD_LIBRARY_PATH, LIBRARY_PATH in .bashrc or .zshrc
This might be a problem confined to the linux computer I am using,
but thought it could be helpful for some other users.
Thanks again!
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi, thank you for a wonderful software.
While installing manta v1.6.0, I encountered an error saying
/usr/local/include/boost/serialization/set.hpp: error: no type named 'library_version_type' in namespace 'boost::serialization'; did you mean 'item_version_type'?
I found out that adding
#include <boost/serialization/library_version_type.hpp>
to the top of
/usr/include/boost/serialization/set.hpp
file solves the problemAlso
I found out that libdeflate needs to be installed from source (https://github.com/ebiggers/libdeflate)
if installed from
apt-get install libdeflate-dev
, manta installation keeps failing with error message:undefined reference to
libdeflate_crc32`LD_LIBRARY_PATH
,LIBRARY_PATH
in .bashrc or .zshrcThis might be a problem confined to the linux computer I am using,
but thought it could be helpful for some other users.
Thanks again!
The text was updated successfully, but these errors were encountered: