diff --git a/Building-for-Linux.md b/Building-for-Linux.md index 9d91928..08315cc 100644 --- a/Building-for-Linux.md +++ b/Building-for-Linux.md @@ -7,15 +7,19 @@ You'll need to download and install the following to build Citra: * [SDL2](https://www.libsdl.org/download-2.0.php) - Deb: `apt-get install sdl2` or `apt-get install libsdl2-2.0-0` or `apt-get install libsdl2-dev` - Arch: `pacman -S sdl2` + - Fedora: `dnf install SDL2-devel` * [Qt](http://qt-project.org/downloads) - Deb: `apt-get install qtbase5-dev libqt5opengl5-dev` - Arch: `pacman -S qt5` + - Fedora: `dnf install qt5-qtbase qt5-qtbase-devel` * GCC v5+ (for C++14 support) - Deb: `apt-get install build-essential` - Arch: `pacman -S base-devel` + - Fedora: `dnf install gcc-c++` * [CMake](http://www.cmake.org/) 3.6+ - Deb: `apt-get install cmake` - Arch: `pacman -S cmake` + - Fedora: `dnf install cmake` * [Clang](https://github.com/llvm-mirror/clang) 3.8 (optional build alternative) - Deb: `apt-get install clang libc++-dev` (in some distros, clang-3.8). - Arch: `pacman -S clang libc++`