From d825b6f751d76d7fc4b38aa9fbcd197dc9ae9180 Mon Sep 17 00:00:00 2001 From: archshift Date: Wed, 21 May 2014 13:32:10 -0700 Subject: [PATCH] Don't use
 for code blocks

---
 Linux-Build.md | 29 +++++++++++++++++++----------
 1 file changed, 19 insertions(+), 10 deletions(-)

diff --git a/Linux-Build.md b/Linux-Build.md
index d135786..6edfa18 100644
--- a/Linux-Build.md
+++ b/Linux-Build.md
@@ -13,35 +13,44 @@ You'll need to download and install the following to build Citra:
 
 Works by calling these commands from a terminal:
 
-
git clone https://github.com/glfw/glfw.git
+```
+git clone https://github.com/glfw/glfw.git
 cd glfw
 mkdir build && cd build
 cmake ..
 make
-sudo make install
+sudo make install +``` ### Build Citra: -
mkdir build
+```
+mkdir build
 cd build
 cmake ..
 make
 sudo make install (currently doesn't work, needs to be fixed)
-Optionally, you can use "cmake -i .." to adjust various options (e.g. disable Qt4 GUI).
+``` +Optionally, you can use "cmake -i .." to adjust various options (e.g. disable Qt4 GUI). ### Building with debug symbols: -
cmake .. -DCMAKE_BUILD_TYPE=Debug
-make
+``` +cmake .. -DCMAKE_BUILD_TYPE=Debug +make +``` ### Running without installing: -
cd data
-../build/src/citra_qt/citra-qt
+```cd data +../build/src/citra_qt/citra-qt +``` ### Debugging: -
cd data
+```
+cd data
 gdb ../build/src/citra_qt/citra-qt
 (gdb) run
-(gdb) bt
\ No newline at end of file +(gdb) bt +``` \ No newline at end of file