Page 1 of 1

Step through the VLC Source Code

Posted: 23 Nov 2004 21:51
by Guest
Hi,

Thus far, i was able to compile and link the VLC source code using Cygwin. The next step for me is to step through the code. I'm new to Cygwin so I'm not sure what tools i need in order to step through and debug the source code in Windows environment.

Any help, links or documents are greatly appreciated.
Thanks

Posted: 24 Nov 2004 00:38
by Sigmund
vlc has millions of lines of code, and are heavily multithreaded, so stepping through it generally does not make sense. There is a crash dump analyser for windows and cygwin called "dr mingw" or something like that.

Posted: 18 Apr 2005 15:50
by Ronald
What about Mac OSX, with Xcode ?

Posted: 18 Apr 2005 20:48
by Sigmund
feel free to try. I don't think it will make much sense to do step by step running though

Posted: 19 Apr 2005 13:06
by The DJ
If you really need to, track the problem to a file location and put a breakpoint on the place where you think the issue is. The first time gdb runs into the breakpoint it will stop there and you can step trough from there. As long as you tracked down the issue close enough you can get some information by looking at the memory. Xcode is actually pretty good at presenting this to your.