warning LNK4099: PDB 'vc110.pdb' was not found with

0

I am trying to get the .dll file in release mode for the performance problem of an existing application. The original debug mode .dll file does not give any problems but I get the following warnings while extracting the .dll file in release mode to overcome the license problems.

"Unhandled exception at 0x7ADA71F9 (AyonixFaceID.dll) in FaceMatch.exe: 0xC0000005: Access violation writing location 0x001C1560."

I guess so, I get the error. Could it be due to the warnings the compiler sends?

c++
visual-studio
asked on Stack Overflow Jul 3, 2020 by CoderCan

1 Answer

0

The Microsoft Docs gives explanations and methods:

PDB 'filename' was not found with 'object/library' or at 'path'; linking object as if no debug info

The linker was unable to find your .pdb file. Copy it into the directory that contains .object/library

Also, this link may help you.

answered on Stack Overflow Jul 6, 2020 by Barrnet Chou

User contributions licensed under CC BY-SA 3.0