I've built a library of objects that don't change often. I believe I've built it with debug symbols enabled. However, when I link against it and start stepping in the sim., I don't see the source or symbols of the library functions, just the function name labels. What am I doing wrong? - Mark
Maybe the debugger can't fine the source for the object code. This could be the case if the source is on another computer or in a different source folder. You can specify a path to the source files using the SET SRC debugger command. Jon
And, of course, if the debugger can't find those nasty source files, how can it be expected to fine them for not showing up in the debugger source window! :-) Jon
Jon, Thanks, I was looking for exactly that - a way to specify the list of source paths. However, I didn't find it. I thought it would be under the Debug tab of the Target Options. SET SRC =P:\<someOtherPath>\src worked just fine. Now if I could get the locals to show up without hovering over them with the mouse... Regards, - Mark
The local variables should show up in the Locals window. Check to see if periodic window update is turned off (I like to have this on all the time). Jon
Periodic update is enabled and I'm just single stepping. uVision can display the values if I hover over them, it just won't put them in the Locals window. I'm using the LARGE model (not my choice). Regards, - Mark