Hi! On Thu, 2009-12-03 at 05:25:06 +0100, subhuman wrote: > sry for spamming, but this may be the last message for a while. because > the funny thing is that when i start (the freshly created) xfstt either > directly or via the /etc/init.d script it segfaults. however, wenn i > start it with gdb and detach the debugger, the bug does not appear at > all. i am probably not supposed to understand this. ;)
Ok let's try something else then. Build the sources like this: $ DEB_BUILD_OPTIONS="noopt nostrip" debuild -us -uc -b Install those and then enable core dumps in you root session: # ulimit -c unlimited This should create a core dump if it segfaulted, in such case you can attach to it with gdb to see at which point it happened, with something like: # gdb /usr/bin/xfstt core Once inside the gdb session, type something like this to get the full stack trace, and send that back: (gdb) bt full thanks, guillem -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

