How to do a Backtrace

General discussions
Locked
User avatar
anonbeat
Posts: 2048
Joined: Thu Sep 16, 2010 9:47 pm

How to do a Backtrace

Post by anonbeat »

Getting A Backtrace
If you need to get a backtrace you must compile guayadeque from svn, see the instructions above, But once you have the code to be compiled you need to do

Code: Select all

cd guayadeque
./buildd
sudo make install
gdb guayadeque
from gdb type run [enter]
This will compile guayadeque with debug information and will run it from console being debuged using the debuger gdb
Once you get the crash at some point you must get back to the console and type

Code: Select all

bt
and this will show a few lines of code calls and numbers. This is the information you need to post on the discussion forums for support.
RuddO
Posts: 55
Joined: Mon Feb 20, 2012 10:06 am

How to do a Backtrace

Post by RuddO »

Or you can call the cyber police :-D
Locked