Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 1.01 KB

linker-tools-warning-lnk4206.md

File metadata and controls

15 lines (12 loc) · 1.01 KB
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Linker Tools Warning LNK4206
Linker Tools Warning LNK4206
12/05/2017
LNK4206
LNK4206
6c108e33-00cf-4c5a-830d-d65d470930a7

Linker Tools Warning LNK4206

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

The filename object file, compiled by using /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 objects compiled by using /Yu.