However we don't install it at the top. It is no build requirement, so I want to avoid it.
4.9 KiB
Dependencies
You'll need to download and install the following to build yuzu:
All other dependencies will be downloaded by conan if needed:
- Boost
- Catch2
- fmt
- OpenSSL
- lz4
- nlohmann_json
- opus
- ZLIB
- zstd
Distro Commands Arch sudo pacman -S base-devel ninja cmake sdl2 qt5 python2 python-pip boost catch2 fmt openssl lz4 mbedtls nlohmann-json opus zlib zip zstd && sudo pip install conan
Ubuntu / Debian sudo apt-get install build-essential ninja-build cmake libboost-all-dev libsdl2-2.0-0 libsdl2-dev qtbase5-dev libqt5opengl5-dev qtbase5-private-dev python2 python-pip && sudo pip install conan
Fedora sudo dnf install gcc ninja-build cmake SDL2-devel qt5-qtbase qt5-qtbase-devel python2 python-pip && sudo pip install conan
Gentoo emerge =sys-devel/gcc-7.1.0 dev-util/ninja dev-util/cmake media-libs/libsdl2 dev-qt/qtcore dev-qt/qtopengl && sudo pip install conan
Note: Depending on your distro, the version of CMake you get may not be what's required to build yuzu. Check with cmake --version
. Version 3.6 or greater is required for you to be able to build!
- Clang 3.8 (optional build alternative):
Distro Commands Arch sudo pacman -S clang
,libc++
is in the AUR. Useyay
to install it.Debian sudo apt-get install clang libc++-dev
(in some distros, clang-3.8)Gentoo emerge sys-devel/clang sys-libs/libcxx
Cloning yuzu with Git
Master:
git clone --recursive https://github.com/yuzu-emu/yuzu
cd yuzu
Mainline (no assert):
git clone --recursive https://github.com/yuzu-emu/yuzu-mainline
cd yuzu-mainline
The --recursive
option automatically clones the required Git submodules.
Building yuzu in Release Mode (Optimized)
Using GCC
mkdir build && cd build
cmake .. -GNinja
ninja
sudo ninja install # (currently doesn't work, needs to be fixed)
Optionally, you can use cmake-gui ..
to adjust various options (e.g. disable the Qt GUI).
Using clang
Note: It is important you use libc++ vs., otherwise your build will likely fail. libc++ is not 100% complete on GNU/Linux, but works well for this build. The libstdc++ std::string is a different data structure than the libc++ std::string. See: LLVM.org. If libc++ is not used, some warnings are treated as errors. Using clang is only really recommended for users not using GCC >= 5. Also see Clang Comparison.
mkdir build && cd build
cmake -GNinja \
-DCMAKE_CXX_COMPILER=clang++-3.8 \
-DCMAKE_C_COMPILER=clang-3.8 \
-DCMAKE_CXX_FLAGS="-O2 -g -stdlib=libc++" \
..
ninja
Debian/Ubuntu: Owing to bug #808086 the build might
fail. To have it build, add the following after line 1938 of /usr/include/c++/v1/string
. (see discussion on
StackOverflow
for more details.)
#if _LIBCPP_STD_VER <= 14
_NOEXCEPT_(is_nothrow_copy_constructible<allocator_type>::value)
#else
_NOEXCEPT
#endif
Additionally, on Ubuntu, do:
sudo apt-get install libc++abi-dev && sudo ln -s /usr/include/libcxxabi/__cxxabi_config.h /usr/include/c++/v1/__cxxabi_config.h
Building yuzu in Debug Mode (Slow)
mkdir build && cd build
cmake .. -GNinja -DCMAKE_BUILD_TYPE=Debug
ninja
Building with debug symbols
mkdir build && cd build
cmake .. -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo
ninja
Running without installing
After building, the binaries yuzu
and yuzu-cmd
(depending on your build options) will end up in build/bin/
.
# SDL
cd build/bin/
./yuzu-cmd
# Qt
cd build/bin/
./yuzu
Debugging
cd data
gdb ../build/bin/yuzu # Start GDB
(gdb) run # Run yuzu under GDB
<crash>
(gdb) bt # Print a backtrace of the entire callstack to see which codepath the crash occurred on