Intel® oneAPI Math Kernel Library
Ask questions and share information with other developers who use Intel® Math Kernel Library.

mkl_s.lib

smit2007
Beginner
344 Views
I am trying to build a fortran program on VS2008 whose files were created with VS2005. But I get the error LNK1181: cannot open input file 'mkl_s.lib'. I understand that this file was just a dummy library that was removed in the latest version of VS but how do I get around this error? I am new to VS and my program doesn't explicity call for this library. Is there a setting I need to change?
0 Kudos
2 Replies
VipinKumar_E_Intel
344 Views
Quoting - smit2007
I am trying to build a fortran program on VS2008 whose files were created with VS2005. But I get the error LNK1181: cannot open input file 'mkl_s.lib'. I understand that this file was just a dummy library that was removed in the latest version of VS but how do I get around this error? I am new to VS and my program doesn't explicity call for this library. Is there a setting I need to change?

Yes, mkl_s was a dummy library and has been removed from MKL 10.2 and will not be available int he future.
You have to link with the new library mkl_intel_s.lib now. Please refer our link line advisor for to know the correct link line.

http://software.intel.com/en-us/forums/intel-math-kernel-library/

You have to change this in your project properties.

You may find details on how to do this from our KB on this here.
http://software.intel.com/en-us/articles/intel-math-kernel-library-intel-mkl-for-windows-build-intel-mkl-program-with-intel-fortran-in-microsoft-visual-studio/
0 Kudos
Artem_V_Intel
Employee
344 Views

Yes, mkl_s was a dummy library and has been removed from MKL 10.2 and will not be available int he future.
You have to link with the new library mkl_intel_s.lib now. Please refer our link line advisor for to know the correct link line.

http://software.intel.com/en-us/forums/intel-math-kernel-library/

You have to change this in your project properties.

You may find details on how to do this from our KB on this here.
http://software.intel.com/en-us/articles/intel-math-kernel-library-intel-mkl-for-windows-build-intel-mkl-program-with-intel-fortran-in-microsoft-visual-studio/

Hello,

I have a small comment. This is a correct link to our link line advisor:

http://software.intel.com/en-us/articles/intel-mkl-link-line-advisor/

Regards,
Art
0 Kudos
Reply