Intel Compiler Warning with MIC - missing Libraries

2k Views Asked by At

While compiling+linking some MIC (Intel Xeon Phi coprocessor) code, I got this warnings.

x86_64-k1om-linux-ld: warning: libimf.so, needed by /usr/local/Intel/parallel_studio_xe_2013_sp1/composer_xe_2015.0.090/compiler/lib/mic/liboffload.so.5, not found (try using -rpath or -rpath-link)
x86_64-k1om-linux-ld: warning: libsvml.so, needed by /usr/local/Intel/parallel_studio_xe_2013_sp1/composer_xe_2015.0.090/compiler/lib/mic/liboffload.so.5, not found (try using -rpath or -rpath-link)
x86_64-k1om-linux-ld: warning: libirng.so, needed by /usr/local/Intel/parallel_studio_xe_2013_sp1/composer_xe_2015.0.090/compiler/lib/mic/liboffload.so.5, not found (try using -rpath or -rpath-link)
x86_64-k1om-linux-ld: warning: libintlc.so.5, needed by /usr/local/Intel/parallel_studio_xe_2013_sp1/composer_xe_2015.0.090/compiler/lib/mic/liboffload.so.5, not found (try using -rpath or -rpath-link)

But these libraries are existing and the code is compiling+linking and executable. The Intel C++ compiler is used.

1

There are 1 best solutions below

1
On

You don't say what compiler options you are using but if you are compiling the code to run native on the coprocessor (if you are using -mmic on the compiler command), then these messages are not harmful. The offload libraries are not used when you run your program directly on the coprocessor. I'm not sure why the loader thinks it needs those libraries but they are not needed, hence they do not link, hence the loader thinks the library is missing. No amount of playing with library paths is going to make the warning go away.