From 7d0c50602b3637f3be369d2b70fc3e5f47c9ab23 Mon Sep 17 00:00:00 2001 From: Vamsi Krishna Date: Mon, 10 Sep 2018 13:10:23 +0530 Subject: [PATCH] Updated Building for Linux (markdown) --- Building-for-Linux.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Building-for-Linux.md b/Building-for-Linux.md index 2f34ab6..9974d31 100644 --- a/Building-for-Linux.md +++ b/Building-for-Linux.md @@ -103,23 +103,23 @@ make ### 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 # SDL cd build/bin/ -./yuzu +./yuzu-cmd # Qt cd build/bin/ -./yuzu-qt +./yuzu ``` ### Debugging ```bash cd data -gdb ../build/bin/yuzu-qt # Start GDB +gdb ../build/bin/yuzu # Start GDB (gdb) run # Run yuzu under GDB (gdb) bt # Print a backtrace of the entire callstack to see which codepath the crash occurred on