Hi. I need to link the MK libraray to my project. On Windows Vista (32 bit) it was somehow easy:
1) goto Tools->Options->VC++ Directories and add 'C:\Program Files\Intel\MKL\9.0\include' in "Include files" and 'C:\Program Files\Intel\MKL\9.0\ia32\lib' in 'Library files'.
2) add the neccessary files (libguide40.lib libguide.lib mkl_c_dll.lib mkl_ia32.lib mkl_lapack.lib mkl_s_dll.lib mkl_solver.lib) to the Project->Properties->Linker->Command Line.
Now it doesn't work, because of 64 bit platform. I changed the library path to C:\Program Files\Intel\MKL\9.0\ia64\lib, but it didn't even compile. Then I added the ia32 files as well, now it compiles, but fails to run (MKL FATAL ERROR: Cannot load mkl_lapack64.dll). What should I do?
P.S. On my VS configuration options there is only one platform - Win32. Can it be the reason? How to solve that?
P.P.S. I know the question is stupid, and probably someone has asked this already, but please do not judge to strictly, I am just a beginner.