Page 1 of 1

Some devlopment tools and how to use them.

Posted: 14 Oct 2006, 22:54
by jeff_sadowski
I'm not sure how helpful I can be but two development tools I use in linux are ddd and valgrind
DDD makes it easier to use gdb it is like a GUI frontend for it.
You might even find it compiled for windows under cygwin. If not I could try and compile it I'm good with getting things to compile.
valgrind however only works in linux it is so helpful for catching all of the most common pointer mistakes.
if you compile your code with the -gdb flag for gcc then valgrind and ddd can show you where problems lye.

Re: Some devlopment tools and how to use them.

Posted: 15 Oct 2006, 12:51
by Watermelon
Thx,I'll look for windows binaries of DDD,will let you know if I fail to do so.  :D

Re: Some devlopment tools and how to use them.

Posted: 19 Oct 2006, 07:34
by jeff_sadowski
Just checked ddd is in the cygwin installer :-D No need for my poor hacking.

Re: Some devlopment tools and how to use them.

Posted: 20 Oct 2006, 09:46
by Watermelon
thx,but I will have to stick to MSVC because the executable compiled from the latest cvs source with mingw no longer works for unknown reason.