-
Notifications
You must be signed in to change notification settings - Fork 491
Reporting issues
If you're encountering any crashes while using AimTux feel free to send us a bug report using our Issue tracker. Before you do this, make sure that nobody else has already reported the same issue and be sure to include as much information as possible by following the guidelines below.
-
Ensure AimTux is at fault. If you have the same issue while AimTux is not loaded then we can't do anything about it. Consider reporting it to the game developers here.
-
Include steps to reproduce if possible. If you know exactly what causes the game to crash then include a list of actions you took that caused the game to crash. Otherwise, tell us what you were doing or which features you were using when the game crashed.
-
Include a backtrace. The easiest way for us to track down crashes is for you to provide a backtrace log. A list of steps to generate this log is detailed in the section below.
Start off by loading AimTux into the game while in the main menu. Next, run this command to attach gdb.
sudo gdb -p $(pidof csgo_linux64)
You should now be prompted with a (gdb)
shell. Type continue
to resume the game.
(gdb) continue
Continuing.
Now, try to reproduce the issue. When the game crashes you will be able to switch back to the gdb shell and generate a backtrace by typing backtrace
followed by quit
to close the game process.
Finally, copy and upload the log to GitHub Gist and include a link in your bug report.