The calls to dgetri & dgetrf, two functions in the MKL library are going unheeded. I keep getting an error something like "undefined refernce to dgetri_". I am lnking the following libraries.
Heres a sample of the code from the makefile
LIBS = -L$(LIB_PATH) -lmkl_lapack32 -lmkl_p4 -lmkl_def
-llpthread
ifc -o myprog $(OBJECT_FILES) $(LIBS)
I checked the calls and made sure it complies with what is there in the MKL reference manual.
Am I linking the Lapack library wrong? Does evaluation version of MKL contain all the function mentioned in the MKL refernce Manual?
Any help is appreciated.
Thanks



