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
HDF5 libraries version 1.8.4 has different API than what kallisto expects.
From cmake
-- Found HDF5: /usr/lib/libhdf5.so (found version "1.8.4")
after make
/home/vagrant/kallisto/src/h5utils.h:122:64: error: too many arguments to function 'hid_t H5Dopen1(hid_t, const char*)'
dataset_id = H5Dopen(group_id, dset_name.c_str(), H5P_DEFAULT);
The text was updated successfully, but these errors were encountered:
according to the version history this stuff was introduced in minor version 8, but it's unclear when the API started pointing to H5Dopen2 instead of H5Dopen1. This is going to take some digging into..
This will have to wait for the next version.
The other complication is the FindHDF5 CMake script that CMake ships with doesn't seem to offer support for version checking (seriously?) so we're going to have to figure out some work around.
HDF5 libraries version 1.8.4 has different API than what kallisto expects.
From cmake
-- Found HDF5: /usr/lib/libhdf5.so (found version "1.8.4")
after make
/home/vagrant/kallisto/src/h5utils.h:122:64: error: too many arguments to function 'hid_t H5Dopen1(hid_t, const char*)'
dataset_id = H5Dopen(group_id, dset_name.c_str(), H5P_DEFAULT);
The text was updated successfully, but these errors were encountered: