Liran
Liran

Reputation: 830

cross dll debug

Im using vs 2003. When I try to debug some program that uses several dll files i can debug (put breakpoint - without question mark) only on the cpp files of the project that creates the dll and was the last one that i compiled . breakpoints located on others dlls (that are part of the program and located in the same solution) are marked with question mark and the debugger doesnt reach them at all.

how can i solve it ?? thanks, liran

Upvotes: 1

Views: 156

Answers (2)

Mike Atlas
Mike Atlas

Reputation: 8231

You can load up the symbols from other assemblies by specifying the symbols path to them in Visual Studio. I'm not sure if the feature is in VS2003 or not, however.

Upvotes: 0

EToreo
EToreo

Reputation: 3086

You must build these dll's as debug and make sure they have the correct symbols in them? just a guess.

Upvotes: 1

Related Questions