Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This guide provides brief instructions on how to build the DAOS VOL connector from source.

Prerequisites

  • MPI Library (make sure it is in your PATH and LD_LIBRARY_PATH)

  • cmake version >= 3.15.0

  • DAOS >= v2.0

Build HDF5 1.13.1

Code Block
git clone -b hdf5-1_13_1 https://github.com/HDFGroup/hdf5.git
cd hdf5;
./autogen.sh
mkdir build; cd build;
./configure --prefix=/path/to/install/hdf5 --enable-parallel --enable-map-api
make -j32 installĀ 

...