The configure script cannot find the blas library since your BLASOPT definition includes Scalapack and this definition requires MPI libraries for a successful link process.
export BLASOPT="-L${MKLROOT}/lib/intel64 -lmkl_scalapack_ilp64 -lmkl_intel_ilp64 -lmkl_core -lmkl_sequential -lmkl_blacs_intelmpi_ilp64 -lpthread -lm"
My suggestion is to use the following BLASOPT definition (that I got from the very same Intel Adviso website you mentioned by unselecting the Scalapack component)
e
xport BLASOPT="-Wl,--start-group ${MKLROOT}/lib/intel64/libmkl_intel_ilp64.a ${MKLROOT}/lib/intel64/libmkl_core.a ${MKLROOT}/lib/intel64/libmkl_sequential.a -Wl,--end-group -lpthread -lm"
|