vote up 1 vote down star
1

Hi,

I have been playing around with the MS Source Server stuff in the MS Debugging Tools install.

At present, I am running my code/pdbs through the Subversion indexing command, which is now running as expected. It creates the stream for a given pdb file and writes it to the pdb file.

However when I use that DLL and associated pdb in visual studio 2008, it says the source code cannot be retrieved.

If I check the pdb against srctool is says none of the source files contained are indexed, which is very strange as the process prior ran fine.

If I check the stream that was generated from the svnindex.cmd run for the pdb, srctool says all source files are indexed.

Why would there be a difference?

I have opened the pdb file in a text editor and I can see the original references to the source files on my machine (also under the srcsrv header name) and the new "injected" source server links to my subversion repository).

Should both references still exist in the pdb? I would have expected one to be removed?

Either way, visual studio 2008 will not pick up my source references so I am a bit lost as to what to try next. As far as I can tell, I have done everything I should have.

Anyone have similar experiences?

Many thanks.

flag

72% accept rate

2 Answers

vote up 1 vote down

There is an option in the Options\Debugging\Symbols of Visual Studio to emit logs of the source server.
Also you need the latest version of srcsrv.dll, just download the latest WinDBG copy the DLL from there and make sure that Visual Studio uses it.

link|flag
vote up 1 vote down check

I have resolved my problem - the source file path that was written to the PDB during build was slightly different to the one written as part of the Subversion source index task.

This must invalidate the source search within Visual Studio as the two paths don't match.

Also writing my own simplified source index stream to my PDB files from a custom NAnt task, which hooks up to Vault, our SCM system.

link|flag
Tim, would you care to share your index stream NAnt task/Vault hookup? I'm trying to setup a similar environment to the one you describe and I'm not having a whole lot of luck. I'm still getting my head around the whole thing. Cheers. – Scott Aug 6 at 3:19
Sure, contact me off list. me@timpeel.com – Tim Peel Aug 13 at 11:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.