Since installingIVF version 10.1.0.24 I get:
1>Linking...
1>ipo: warning #11023: file format not recognized for mkl_c_dll.lib
Iam linking against MKL version 10.0.3.021 (latest release)
Can I ignore this warning since it appears to complete the link OK?
Andy
链接已复制
If your application is working, you can ignore it. The linker is pulling in the version of that library from the MKL directories, and that one is a "redirector stub" replaced by mkl_intel_c_dll.lib. Unfortunately, the way it was built causes it to be not understood by xilink, the Intel "pre-linker" which handles the IPO feature.
1>ipo: warning #11023: file format not recognized for mkl_c.lib
and
1>ipo: warning #11023: file format not recognized for mkl_lapack.lib
everytime I compile my project. There must be some solution to this problem? (instead of just ignore the warnings)
I just changed fra Compaq til Intel, so I expect it is some settings, which is wrong. Any ideas?
1>ipo: warning #11023: file format not recognized for mkl_c.lib
and
1>ipo: warning #11023: file format not recognized for mkl_lapack.lib
The usual reason for the error is that you tried to mix targets; e.g. you might have used ifort for Xeon and attempted to link the libraries for Itanium.
If you continue to have problems, read the docs closely, and consult the MKL forum. It's easy to get confused between the overlapping backward compatibility MKL link scripts such as mkl_lapack and the real libraries.
