Updated Building for Linux (markdown)
parent
ce632eeebb
commit
7d0c50602b
|
@ -103,23 +103,23 @@ make
|
||||||
|
|
||||||
### Running without installing
|
### Running without installing
|
||||||
|
|
||||||
After building, the binaries `yuzu` and `yuzu-qt` (depending on your build options) will end up in `build/bin/`.
|
After building, the binaries `yuzu` and `yuzu-cmd` (depending on your build options) will end up in `build/bin/`.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# SDL
|
# SDL
|
||||||
cd build/bin/
|
cd build/bin/
|
||||||
./yuzu
|
./yuzu-cmd
|
||||||
|
|
||||||
# Qt
|
# Qt
|
||||||
cd build/bin/
|
cd build/bin/
|
||||||
./yuzu-qt
|
./yuzu
|
||||||
```
|
```
|
||||||
|
|
||||||
### Debugging
|
### Debugging
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
cd data
|
cd data
|
||||||
gdb ../build/bin/yuzu-qt # Start GDB
|
gdb ../build/bin/yuzu # Start GDB
|
||||||
(gdb) run # Run yuzu under GDB
|
(gdb) run # Run yuzu under GDB
|
||||||
<crash>
|
<crash>
|
||||||
(gdb) bt # Print a backtrace of the entire callstack to see which codepath the crash occurred on
|
(gdb) bt # Print a backtrace of the entire callstack to see which codepath the crash occurred on
|
||||||
|
|
Loading…
Reference in New Issue