|
From: Chris F. <cd...@fo...> - 2010-10-14 23:03:56
|
On Wed, Oct 13, 2010 at 03:18:16AM -0700, Emanoil Kotsev wrote: > Thanks Daniel > > --- On Wed, 10/13/10, Daniel Gollub <go...@b1...> wrote: > > > From: Daniel Gollub <go...@b1...> > > ? ? ? ? ? ? ? ? > > > > Could you send the full backtrace? > > > > Run: bt .. in gdb commandline. > > > > And make sure libsyncml and syncml-ds-tool are build with > > debuginfo - gcc flag > > -g ... > > > > I'm not sure I've understood exactly what you mean (or what I am > supposed to do). I don't have that much experience or knowledge of the > devs language. There was a segfault reported in the original email, so he's asking for a gdb debugger stack trace. :-) ulimit -c unlimited <run program that crashes> gdb /some/program core > bt If the stack trace doesn't include function names, then you'll need to recompile the libraries with debug info enabled (gcc's -g flag). - Chris |