mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-22 04:40:05 +00:00
Initial creation
parent
134efa70aa
commit
222e26f073
45
Building-for-Ubuntu-16.04.md
Normal file
45
Building-for-Ubuntu-16.04.md
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
## Step 1: Prerequisites
|
||||||
|
|
||||||
|
### GCC
|
||||||
|
|
||||||
|
sudo apt install gcc-5 g++-5
|
||||||
|
|
||||||
|
### libstdc++
|
||||||
|
|
||||||
|
sudo apt install lib32stdc++6
|
||||||
|
|
||||||
|
### xorg-dev
|
||||||
|
|
||||||
|
sudo apt install xorg-dev
|
||||||
|
|
||||||
|
### cmake
|
||||||
|
|
||||||
|
sudo apt install cmake
|
||||||
|
|
||||||
|
### SDL2
|
||||||
|
|
||||||
|
sudo apt install libsdl2-dev
|
||||||
|
|
||||||
|
### QT5
|
||||||
|
|
||||||
|
sudo apt install qtbase5-dev libqt5opengl5-dev
|
||||||
|
|
||||||
|
## Step 2: Build Citra
|
||||||
|
|
||||||
|
### Get Citra
|
||||||
|
|
||||||
|
git clone --recursive https://github.com/citra-emu/citra
|
||||||
|
|
||||||
|
### Compile
|
||||||
|
|
||||||
|
cd citra
|
||||||
|
mkdir build
|
||||||
|
cd build
|
||||||
|
export CC=gcc-5
|
||||||
|
export CXX=g++-5
|
||||||
|
cmake .. -DCMAKE_BUILD_TYPE=Release -DCITRA_FORCE_QT4=ON
|
||||||
|
make
|
||||||
|
|
||||||
|
## Step 3: Run Citra
|
||||||
|
|
||||||
|
./src/citra_qt/citra-qt
|
Loading…
Reference in New Issue
Block a user