
#Install the Boost static libraries

1. Download boost source https://www.boost.org/users/download/
2. cd path/to/boost_1_xx_0
3. $ ./bootstrap.sh --help (for options)
4. $ ./bootstrap.sh
5. $ ./b2 link=static


#Install the zlib static library
1. Download zlib https://zlib.net
2. cd path/to/zlib
3. ./configure --static
4. make

#Install gsl static library

1. Download gsl source https://www.gnu.org/software/gsl/
2. cd path/to/gsl
3. ./configure -disable-shared
4. make
5. make check
6. make install

#Install HDF5 static library

1. Download HDf5 source https://www.hdfgroup.org/downloads/hdf5/source-code/
2. cd path/to/hdf5
3. ./configure -disable-shared --without-szlib --enable-cxx
4. make
5. make check
6. make install


