Install gizmo

Working /home/htanimur/lib

1, Install GNU Scientific Library

$ tar xvfz gsl-1.9.tar.gz
$ cd gsl-1.9
$ ./configure –prefix=/home/htanimur/lib/gsl/1.9
$ make
$ make install

2, Install FFTW

$ tar xvfz fftw-2.1.5.tar.gz
$ cd fftw-2.1.5

$ ./configure –prefix=/home/htanimur/lib/fftw/2.1.5/ –enable-mpi –enable-type-prefix
$ make
$ make install
$ make clean
$ ./configure –prefix=/home/htanimur/lib/fftw/2.1.5/ –enable-mpi –enable-type-prefix –enable-float
$ make
$ make install

 

3, Install HDF5

$ tar xvfz hdf5-1.10.1.tar.gz
$ cd hdf5-1.10.1
$ ./configure –prefix=/home/htanimur/lib/hdf5/1.10.1
$ make
$ make install

4, Install Gizmo 

$ unzip phopkins-gizmo-public-542a79b1459e.zip
$ mv phopkins-gizmo-public-542a79b1459e gizmo

“Makefile.systype” file defines the systype you want to use (I choose SYSTYPE=”Wheeler”)

$ set GSL_HOME
export GSL_HOME=/home/htanimur/lib/gsl/1.9
export FFTW2_HOME=/home/htanimur/lib/fftw/2.1.5
export HDF5_HOME=/home/htanimur/lib/hdf5/1.10.1

set LD_LIBRARY_PATH in /home/htanimur/.bashrc

export LD_LIBRARY_PATH=”$LD_LIBRARY_PATH:/home/htanimur/lib/hdf5/1.10.1/lib”

$ make

Leave a comment