I've followed this guide up until step 5. When I run $make arch=intel64 it gives me the following output:
make -f Make.top startup_dir arch=intel64
make[1]: Entering directory `/hpl-2.0'
Make.intel64:106: *** missing separator. Stop.
make[1]: Leaving directory `/hpl-2.0'
make: *** [startup] Error 2
I'm not sure what it means by "missing separator".
Edit: I have the following in the makefile at lines 103-106:
LAdir = /opt/intel/mk/lib/intel64
LAinc = /opt/intel/mkl/include
LAlib = -Wl,--start-
group $(LAdir)/libmkl_intel_lp64.a $(LAdir)/libmkl_intel_thread.a $(LAdir)/libmkl_core.a -Wl, --end-group -lpthread -lm
This is exactly what the guide says to put, if I am not mistaken.