Skip to content
Snippets Groups Projects
Commit 41507ff5 authored by Pietro Incardona's avatar Pietro Incardona
Browse files

Fixing HDF5 for CYGWIN

parent 4f086a7c
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,11 @@ fi
wget http://ppmcore.mpi-cbg.de/upload/hdf5-1.8.16.tar.bz2
tar -xf hdf5-1.8.16.tar.bz2
cd hdf5-1.8.16
CC=mpicc ./configure --with-zlib=$1/ZLIB --enable-parallel --prefix=$1/HDF5
make -j $2
if [ x"$plaform" != "cygwin" ]; then
CC=mpicc ./configure --with-zlib=$1/ZLIB --enable-parallel --prefix=$1/HDF5
else
CC=mpicc ./configure --enable-parallel --prefix=$1/HDF5
fimake -j $2
mkdir $1/HDF5
make install
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment