Merge pull request #10969 from phire/minimum_compilers

Enforce minimum supported versions of GCC and Clang
This commit is contained in:
Admiral H. Curtiss
2023-05-01 03:03:05 +02:00
committed by GitHub
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