cd /path/to/ADIOS2 tar xf ADIOS2-2.8.3.tar.gz cd ADIOS2-2.8.3
mkdir build && cd build
export CC=mpicc CXX=mpicxx FC=mpifort cmake -DCMAKE_INSTALL_PREFIX=/path/to/ADIOS2 -DBUILD_TESTING=ON -DADIOS2_USE_MPI=ON -DCMAKE_BUILD_TYPE=Release ..
make -j make install
export PATH=/path/to/ADIOS2/bin:$PATH export LD_LIBRARY_PATH=/path/to/ADIOS2/lib64:$LD_LIBRARY_PATH export INCLUDE=/path/to/ADIOS2/include:$INCLUDE