Share via


Linker Tools Warning LNK4206

precompiled type information not found; 'filename' not linked or overwritten; linking object as if no debug info

The given object file, compiled with /Yc, was either not specified in the LINK command or was overwritten.

A common scenario for this warning is when the .obj that was compiled with /Yc is in a library, and where there are no symbol references to that .obj from your code. In that case, the linker will not use (or even see) the .obj file. In this situation, you should recompile your code and use /Yl for the remaining objects (the objects that are not compiled with /Yc).