show/hide this revision's text 2 added 3 characters in body

PDB files are generated when you build your project. They contain information reltating the to the built binaries which visual studio can interept and is able to link the call stack back to source.

When a program crashes and it generates a crash report, and visual studio is able to take that report and link it back to source via the PDB files. The PDB files must be built from the same binary that generated the crash report!

There are some issues that we have encouted over time.

  • The machine that is debugging the crash report needs to have the source on the same path as the machine that built the binary.
  • Release builds often optimize to the extent where you cannot view the state of object member variables

If anyone knows how to defeat the former I would be grateful for some input.

show/hide this revision's text 1

PDB files are generated when you build your project. They contain information reltating the the built binaries which visual studio can interept and is able to link the call stack back to source.

When a program crashes and it generates a crash report, visual studio is able to take that report and link it back to source via the PDB files. The PDB files must be built from the same binary that generated the crash report!

There are some issues that we have encouted over time.

  • The machine that is debugging the crash report needs to have the source on the same path as the machine that built the binary.
  • Release builds often optimize to the extent where you cannot view the state of object member variables

If anyone knows how to defeat the former I would be grateful for some input.