Comments to describe what the gdb debugging commands do.

Mat M 2018-01-18 12:12:14 -05:00
parent b203334e35
commit 971cddec28
1 changed files with 3 additions and 3 deletions

@ -119,8 +119,8 @@ cd build/src/yuzu_qt/
```bash
cd data
gdb ../build/src/yuzu_qt/yuzu-qt
(gdb) run
gdb ../build/src/yuzu_qt/yuzu-qt # Start GDB
(gdb) run # Run yuzu under GDB
<crash>
(gdb) bt
(gdb) bt # Print a backtrace of the entire callstack to see which codepath the crash occurred on
```