Lrz-itaniumInstallation instructions for the Intel Itaniums at the LRZLogin node: > module unload fortran ccomp > module load fortran/intel/11.1 > module load ccomp/intel/11.1
> ./bootstrap.sh --prefix=$HOME --with-libraries=program_options --with-toolset=intel-linux > ./bjam The installation via ./bjam install ... didn't work for me so I copied the libs to $HOME/lib/$(uname -m) by hand.
If you don't need SU(2) symmetry, you can use any version of the MKL. In order to use SU(2) programs you need MKL version 9.1, which seems to be the highest which is compatible with the system GMP (version 4.1.4). I did not succeed in compiling a newer GMP on my own with the Intel compiler.
> module load mkl/9.1
> export CC=icc > export CXX=icpc > export F77=ifort > export CXXFLAGS="-DNDEBUG -DINTEL_COMPILER -O3 -ftz -ip -scalar_rep -opt-prefetch" build/ia64> ../../configure --with-blas="$MKL_SHLIB" --bindir=$HOME/bin/$(uname -m) --with-boost=$HOME/include --with-boost-program-options="-L$HOME/lib/$(uname -m) -lboost_program_options-il-mt" build/ia64> make build/ia64> make install |