On Fri, 2008-01-04 at 13:45 +0000, Daniel Taylor wrote: > How do I do that? There's no configure script. Do I just do: > > CFLAGS="-O0 -g" make gtk > > ? > > Sorry for my ignorance. This uses a different build method than I'm used to.
If you're using the old makefile rather than calling make -f Makefile.unix, then you need to edit the CFLAGS_GTK variable in makefile. It's around line 125. By default it's -g -O, but depending on your compiler you may need to change that to -g -O0 to get meaningful results from the debugger. B.
