Skip to content

Commit 3c4a915

Browse files
authored
Update README.md
1 parent b6e7d42 commit 3c4a915

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
# HDF5 wrapper
22
## HDF5 Installation
33
Download the tar ball from the [official homepage](https://www.hdfgroup.org/downloads/hdf5/source-code/).
4-
Make sure to always use the latest version (currently: 1.13.0). Older versions (1.8 and below) may result in unintentional problems, especially with non-native datatypes like `logical`.
4+
Make sure to always use the latest version (currently: 1.12.2). Older versions (1.8 and below) may result in unintentional problems, especially with non-native datatypes like `logical`.
55
Installation for e.g. gnu compiler is done via
66

77
```
88
tar xf hdf5-x.y.z.tar.gz
99
cd hdf5-x.y.z
1010
CC=gcc
1111
FC=gfortran
12-
./configure --enable-fortran --prefix=/opt/hdf5-x.y.z_gcc
12+
mkdir /home/USER/opt
13+
./configure --enable-fortran --prefix=/home/USER/opt/hdf5-x.y.z_gcc
1314
make
1415
make check
1516
make install

0 commit comments

Comments
 (0)