Closed dariomel closed 7 years ago
I believe this has already been addressed in e01fa7870e9b7d4bd4fffc6bb59779ca3c752cc6 (It’s just that no release has been made since then)
It's worth mentioning that even Debian stretch (the current stable release) now comes with hdf5 1.10.0-patch1.
The current version of h5 0.9.9 is released now on CRAN, see https://CRAN.R-project.org/package=h5 and https://github.com/mannau/h5/releases/tag/release-cran-0.9.9.
Best, Mario
when I tried building h5_0.9.8 with libhdf5-1.10.1 I got the following compilation errors,
I believe the problem is that the HDF5 class hierarchy was slightly changed in hdf5-1.10.1.
However, I successfully built and installed the h5 package after making the following changes to the source code: 1) replace every occurrence of
CommonFG
withGroup
in the C++ files under the src directory, 2) changeh5_GetAttributeNames_CommonFG
toh5_GetAttributeNames_Group
inside functionGetAttributeNames_CommonFG
in fileR/RcppExports.R
.