RM.
RM.

Reputation: 2043

Is it possible to use pdb files in Delphi XE2?

For debugging purposes it is possible to get the .pdb files for all dlls shipped with Windows.

Can the Delphi debugger use these files? I would like to see detailed callstack if the calls are going through windows dlls inside the Delphi IDE stack trace window.

Upvotes: 4

Views: 613

Answers (1)

David Heffernan
David Heffernan

Reputation: 612844

No it is not possible to use .pdb files in Delphi. The Delphi debugger only supports debugging with its own proprietary debug files.

Upvotes: 1

Related Questions