in Make.top
there's a line where it's trying to create a symlink:
$(LN_S) $(TOPdir)/Make.$(arch) Make.inc
the command fails if the source code directory is not $(HOME)/hpl
, TOPdir
variable should be defined in your Make.intel64
:
TOPdir = $(HOME)/hpl
Changing the variable to your actual path should solve the problem (or move source code to $(HOME)/hpl
).