From 35f31fe7b830dbc25789c05dda24823bc15debd9 Mon Sep 17 00:00:00 2001 From: spycrab Date: Sun, 14 Jan 2018 20:01:07 +0100 Subject: [PATCH] Add instructions for Gentoo --- Building-for-Linux.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Building-for-Linux.md b/Building-for-Linux.md index af8285d..1db15bc 100644 --- a/Building-for-Linux.md +++ b/Building-for-Linux.md @@ -6,24 +6,29 @@ You'll need to download and install the following to build yuzu: - 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` + - Gentoo: `emerge media-libs/libsdl2` * [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` + - Gentoo: `emerge dev-qt/qtcore dev-qt/qtopengl` * GCC v5+ (for C++14 support) - Deb: `apt-get install build-essential` - Arch: `pacman -S base-devel` - - Fedora: `dnf install gcc-c++` + - Fedora: `dnf install sys-devel/gcc` * [CMake](http://www.cmake.org/) 3.6+ - Deb: `apt-get install cmake` - Arch: `pacman -S cmake` - Fedora: `dnf install cmake` + - Gentoo: `emerge dev-util/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++` is in the AUR. Use pacaur or yaourt to install it. + - Gentoo: `emerge sys-devel/clang sys-libs/libcxx` * Curl - Deb: `apt-get install libcurl4-openssl-dev` - - Arch `pacman -S libcurl-compat` + - Arch: `pacman -S libcurl-compat` + - Gentoo: `emerge net-misc/curl` ### Cloning yuzu in Git: