You'll need to download and install the following to build yuzu:
@ -24,12 +24,13 @@ You'll need to download and install the following to build yuzu:
- Gentoo: `emerge dev-util/cmake`
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!
The `--recursive` option automatically clones the required Git submodules too.
### Building yuzu in Debug Mode (Slow):
### Building yuzu in Debug Mode (Slow)
**Using gcc:**
#### Using GCC
```bash
mkdir build && cd build
@ -51,7 +52,7 @@ sudo make install
Optionally, you can use `cmake -i ..` to adjust various options (e.g. disable the Qt GUI).
**Using clang:**
#### 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: [LLVLM.org](https://llvm.org/svn/llvm-project/www-releases/trunk/3.8.0/projects/libcxx/docs/UsingLibcxx.html). 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](http://clang.llvm.org/comparison.html).