
For the last two weeks now, I have been uploading the builds here with full debug:
http://inkscape.modevia.com/win32
Notice that for each *.7z there is a separate *-dbg.7z with the corresponding symbol file. This will avoid the backtrace lines with only () as the line info that you have been seeing. If you run it with command-line gdb, the command would be:
gdb inkscape.exe -symbols=inkscape.dbg or gdb inkscape.exe -s inkscape.dbg
bob
Gail Banaszkiewicz wrote:
Are there any way for debug inkscape under WinXP with a IDE integrated debugger (e.g. DevC++, Code::Blocks, Eclipse/CDT or MS Visual C++)? How debug you under windows?
Today I was working on getting set up for my SoC bug fixes, and I wanted to figure out the same thing. So far, Eclipse/CDT is looking promising. I can get it to build within in Eclipse, as well as run/debug. There is an error when the program starts in debug, but I continued and it seemed to start ok. Will be testing now whether debugging actually works. Using Eclipse requires a bit of massaging which I can hopefully help you figure out once I have it all working.
Gail