1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
#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
|