Good day.

I have 2 projects, one is Addition.lib. The other is HL_1.dll.

in HL - Addition.lib is used, but when compiling HL, LNK4099 crashes where some classes from my Addition.lib project are listed enter image description here

Actually, I would like to know how critical this warning is and how to cope with it? As I understand it when viewing some articles from the Internet, it means that I cannot go inside the described classes in the warning during line-by-line debugging, right? Are there any other nuances?

  • The .pdb files are developed by ms and include debugging information for the debugger. The presence of such a file will allow debug dll and any used in the project, its absence does not impose any restrictions on the execution of the code. - goldstar_labs
  • Apparently you have a project in release, do you generate pdb in release? - Unick

0