vote up 0 vote down star

I have some crashes in some C code, built without debugging symbols, and I have only a backtrace with the absolute addresses of the call stack. This is on windows (64 bits). I am more of a linux guy, so I am a bit lost at how to look into debugging this - on Linux, I would run the code under valgrind, but AFAIK, no such tool exists for windows 64 bits.

What are my options ? I can modify the C code at will, but I cannot build it with the debug symbols. The reason why I cannot build with debugging symbols is that my binary is not built with MS tools (it is built with mingw-w64).

flag

67% accept rate

2 Answers

vote up 1 vote down

You need to generate a map file. A map file lists out the addresses of various public symbols (functions, globals etc) in your executable/binary. Usually it can be generated by passign on a special switch to the linker.

MSDN reference for /MAP

link|flag
I am not using MS compilers, so I cannot use this - I edited my question to make this clearer – David Cournapeau Jun 26 at 11:50
What compiler are you using then? Map files are an (almost) universal concept. – SDX2000 Jun 26 at 11:53
1  
David is using MinGW, and according to the MinGW FAQ, it can produce map files: cs.colorado.edu/~main/cs1300/… – RichieHindle Jun 26 at 11:56
Thanks for the link. – SDX2000 Jun 26 at 11:58
1  
Ah, nice, this indeed sound exactly like what I need. – David Cournapeau Jun 26 at 12:06
vote up 0 vote down

You should probably be using the ming version of gdb, which can understand the symbols embedded in the binary.

link|flag

Your Answer

Get an OpenID
or

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