Le mercredi 22 septembre 2004 � 00:08 +0930, Michael Gratton a �crit : > Guys, > > What's the best way to be able to get stack traces from gnome binaries > when they crash? Recompile using "apt-get --compile" with some debugging > flag on?
Hi, This works with most of the GNOME packages in Debian: $ apt-get install devscripts $ apt-get source paquet $ apt-get build-dep paquet $ cd paquet-version $ DEB_BUILD_OPTIONS="nostrip noopt" debuild $ dpkg -i ../*.deb The "nostrip noopt" works with all the packages using cdbs and makes unstripped non-optimized builds. Cheers, Sebastien Bacher

