TCS
TCS

Reputation: 5900

Creating PDB out of DLL

I'm debugging an application that loads DLLs I didn't compile, but they have some exported functions.

Is it possible to generate PDBs from the DLLs so I will be able to see the exported functions symbols in the call stack during debug?

Thanks!

Upvotes: 1

Views: 1992

Answers (1)

Lol4t0
Lol4t0

Reputation: 12547

pdb is generated by compiler while generating code. You have not enough information to generate pdb from already compiled dll without access to its source code.

But often pdbs are provided by dll's authors

Upvotes: 2

Related Questions