From ff6924cd78e5f257653cd8de13fbcc98a4389b4a Mon Sep 17 00:00:00 2001 From: Merry Date: Sun, 21 Jan 2018 14:04:45 +0000 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 c054375..d9bc01a 100644 --- a/Building-for-Linux.md +++ b/Building-for-Linux.md @@ -103,15 +103,15 @@ make ### Running without installing -After building, the binaries `yuzu` and `yuzu-qt` (depending on your build options) will end up in `build/src//`. +After building, the binaries `yuzu` and `yuzu-qt` (depending on your build options) will end up in `build/bin/`. ```bash # SDL -cd build/src/yuzu/ +cd build/bin/ ./yuzu # Qt -cd build/src/yuzu_qt/ +cd build/bin/ ./yuzu-qt ``` @@ -119,7 +119,7 @@ cd build/src/yuzu_qt/ ```bash cd data -gdb ../build/src/yuzu_qt/yuzu-qt # Start GDB +gdb ../build/bin/yuzu-qt # 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