Re: [Tuxpaint-devel] Kaleidoscope crash
An award-winning drawing program for children of all ages
Brought to you by:
wkendrick
|
From: Albert C. <aca...@gm...> - 2007-12-01 04:55:16
|
On Nov 30, 2007 9:27 PM, Caroline Ford <car...@go...> wrote: > I was using the standard Ubuntu program crash rules. We ask them for a > backtrace https://wiki.ubuntu.com/Backtrace using gbd and then using > Valgrind https://wiki.ubuntu.com/Valgrind As long as you use valgrind, you'll cover the problem. The misleading results from gdb could cause developers to waste time though, so getting the Ubuntu crash rules adjusted would still be a good idea. > My concern is that I can't get a debug version of tuxpaint. I'm > guessing I'd need to hack on the makefiles. Variables can be overridden on the command line. Do this: make OPTFLAGS="-Os -g3" I'm using this right now, since I need to build without Pango and SVG, and since I'm building for the Geode processor: LANG=C make NOPANGOFLAG=NO_SDLPANGO SDL_PANGO_LIB= SVG_LIB= SVG_CFLAGS= NOSVGFLAG=NOSVG OPTFLAGS='-g3 -O2 -fno-tree-pre -march=geode -mtune=geode -mpreferred-stack-boundary=2 -mmmx -m3dnow -fomit-frame-pointer -falign-functions=0 -falign-jumps=0 -DOLPC_XO -DSUGAR' |