Reputation: 345
In visual studio how can I debug/step into calls made by an exe to a library ? The exe is available only in release mode and calls the library which is built in debug mode I made a simple vs solution with just the exe and started it ..then I opened a source file from the binary and added breakpoints.. but vs doesnot activate the breakpoints saying "no symbols loaded for this file" ...obviously I am missing something here.. (if I remember correctly I used to be able to debug the calls before)
Upvotes: 2
Views: 177
Reputation: 32398
You can debug binaries that are built in release mode with the following caveats:
To add PDB files for the release binary, go to:
Debug -> Options and Settings -> Symbols
Upvotes: 1