The current SuperTux bug tracker can be found at:
The old Mantis bug tracker can be (partially) viewed at:
Some even older bugs can be found at OldBugs.
A backtrace provides information on where exactly a program crashed and should be included in back reports if possible, the follow describes how to create one:
- First, ensure
DEBUG
is enabled so SuperTux is compiled with debugging symbols.- Run
ccmake .
and make sureDEBUG
is set toON
. Use to toggle the setting. - Press
C
thenG
to generate the new configuration and exit.
- Run
- If you haven't previously run
cmake .
, do so now. - Run
make
to compile SuperTux - Start SuperTux with
gdb ./supertux2
- Enter
run
to start SuperTux. Alternatively, you can enterrun
to start SuperTux with parameters. - When SuperTux crashes, enter
bt
into GDB. This will provide you with the backtrace which you can included in a bug report.
If you're asked to set a breakpoint, it can be done in GDB using break
:
before entering run