Intel® C++ Compiler
Community support and assistance for creating C++ code that runs on platforms based on Intel® processors.
7876 Discussions

Geeting the following error and subsequest error in the VisualStudio Build

inteleverywhere
Beginner
340 Views
xyz.lib is an object library, but has no symbols (this can happen if lib is used where xilib is needed). This occurs in the x64 mode.

How can I change the setings to get arround the problem?

Thanks
D
0 Kudos
4 Replies
Yang_W_Intel
Employee
340 Views
Can you give a sample project for this error?
Thanks.
-Yang
0 Kudos
mecej4
Black Belt
340 Views
If you possess the sources from which to build xyz.lib, all that you have to do is to recompile and rebuild (using ar or lib) the library to put the external symbols back in.

If you have only the library and it has the symbols stripped from it, you are stuck.
0 Kudos
JenniferJ
Moderator
340 Views
It seems that you're linking xyz.lib that is built with /Qipo (or /GL) in a project that is built with VC. To solve it, turn off the /Qipo optimization when building the xyz.lib.

Jennifer
0 Kudos
inteleverywhere
Beginner
340 Views
Thank you. I shall make the changes and get back to you with the results.

Reg
Deepak
0 Kudos
Reply