lezebulon
lezebulon

Reputation: 7994

How can I force to load / create pdb files for a dll

I have downloaded the latest version of SFML (a library) which includes source files, dlls, headers, and .lib files. I have no problem using the library and it's linked dynamically. I'd like to be able to step through the library code in the debugger (I used to be able to which earlier version), but now I can only see the assembly. What is the usual way to generate pdb files to so? thanks

Upvotes: 1

Views: 1673

Answers (1)

Steztric
Steztric

Reputation: 2942

Generally Visual Studio 2010 should automatically generate .pdb files for you (if you build in debug mode). Take a look in your Debug output folder. You can see where and what .pdb is being generated from your project settings;

Generate PDB

Sterren

Upvotes: 2

Related Questions