I set up a symbol server and source server in our build machine for my teammates to ease crashdump debugging.
- Those servers are set with Microsoft Debugging Tools ( ssindex.cmd / symstore ) and perforce
- Our IDE is VS2010
- I set debugging options in VS2010 ( Enable source server support / Symbol server location setting )
- I set the registery value :
HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\10.0\AD7Metrics\Engine\{00000000-0000-0000-0000-000000000000}
RequireFullTrustForSourceServer to 0 (REG_DWORD)
In this case, source server works well.
- Run application built from our build machine without source / symbol file.
- Attach debugger ( Using VS2010 )
- Makes breakpoint, and tries to see source code in a call stack.
VS2010 shows proper source code obtained from our source control system - perforce. Source codes are stored in C:\Users\XXX\AppData\Local\SourceServer...
But in this case, source server does not work well.
- Run application built from our build machine without source / symbol file.
- Makes crashdump : Use Task Manager - 'Create Crash Dump' menu or Use MiniDumpExceptionInformation... Yes. Our project code is in C#.
- Open that dump file.
VS2010 obtains only first source code in a call stask from perforce. If I tries to see another source code in a call stack, VS2010 asks where the source code is. Of couese, that source code is stored in perforce. Our source server do not tries to obtain proper source code...
I want to see proper source codes in call stack when opening dump files. Any ideas? I need help.
Thanks.