Enforce minimum supported versions of GCC and Clang

We already have a minimum required version of MSVC
This commit is contained in:
Scott Mansell
2022-08-10 14:50:29 +12:00
parent 3c4a21315d
commit f34a09b39f
3 changed files with 33 additions and 11 deletions

View File

@ -53,10 +53,12 @@ The "Debug" solution configuration is significantly slower, more verbose and les
## Building for Linux and macOS
Dolphin requires [CMake](https://cmake.org/) for systems other than Windows. Many libraries are
bundled with Dolphin and used if they're not installed on your system. CMake
will inform you if a bundled library is used or if you need to install any
missing packages yourself. You may refer to the [wiki](https://github.com/dolphin-emu/dolphin/wiki/Building-for-Linux) for more information.
Dolphin requires [CMake](https://cmake.org/) for systems other than Windows.
You need a recent version of GCC or Clang with decent c++20 support. CMake will
inform you if your compiler is too old.
Many libraries are bundled with Dolphin and used if they're not installed on
your system. CMake will inform you if a bundled library is used or if you need
to install any missing packages yourself. You may refer to the [wiki](https://github.com/dolphin-emu/dolphin/wiki/Building-for-Linux) for more information.
Make sure to pull submodules before building:
```sh