mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-24 06:31:03 +00:00
Don't use <pre> for code blocks
parent
e9f9a65c33
commit
d825b6f751
@ -13,35 +13,44 @@ You'll need to download and install the following to build Citra:
|
||||
|
||||
Works by calling these commands from a terminal:
|
||||
|
||||
<pre>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</pre>
|
||||
sudo make install
|
||||
```
|
||||
|
||||
### Build Citra:
|
||||
|
||||
<pre>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).</pre>
|
||||
```
|
||||
Optionally, you can use "cmake -i .." to adjust various options (e.g. disable Qt4 GUI).
|
||||
|
||||
### Building with debug symbols:
|
||||
|
||||
<pre>cmake .. -DCMAKE_BUILD_TYPE=Debug
|
||||
make</pre>
|
||||
```
|
||||
cmake .. -DCMAKE_BUILD_TYPE=Debug
|
||||
make
|
||||
```
|
||||
|
||||
### Running without installing:
|
||||
|
||||
<pre>cd data
|
||||
../build/src/citra_qt/citra-qt</pre>
|
||||
```cd data
|
||||
../build/src/citra_qt/citra-qt
|
||||
```
|
||||
|
||||
### Debugging:
|
||||
|
||||
<pre>cd data
|
||||
```
|
||||
cd data
|
||||
gdb ../build/src/citra_qt/citra-qt
|
||||
(gdb) run
|
||||
(gdb) bt</pre>
|
||||
(gdb) bt
|
||||
```
|
Loading…
Reference in New Issue
Block a user