diff options
author | Andrew Kaster <akaster@serenityos.org> | 2022-01-06 23:27:53 -0700 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-01-07 11:02:30 +0100 |
commit | c62c10caf03a90d665bf934b376c3a68bb69341e (patch) | |
tree | 936a4798086babacc25df5192b426608930b6c93 /Documentation/Troubleshooting.md | |
parent | d70aba6a11df6815510c4246a5fb58582634cbb4 (diff) | |
download | serenity-c62c10caf03a90d665bf934b376c3a68bb69341e.zip |
Meta+CI+Documentation: Bump host gcc requirement up to gcc 11
Bump macOS CI version to macOS 11 while we're here.
Diffstat (limited to 'Documentation/Troubleshooting.md')
-rw-r--r-- | Documentation/Troubleshooting.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/Troubleshooting.md b/Documentation/Troubleshooting.md index 359a296fdd..4b41a94954 100644 --- a/Documentation/Troubleshooting.md +++ b/Documentation/Troubleshooting.md @@ -16,7 +16,7 @@ install it. You can also build it using the `Toolchain/BuildQemu.sh` script. ### GCC is missing or is outdated -Ensure your gcc version is >= 10 with `gcc --version`. Otherwise, install it. If your gcc binary is not +Ensure your gcc version is >= 11 with `gcc --version`. Otherwise, install it. If your gcc binary is not called `gcc` you have to specify the names of your C and C++ compiler when you run cmake, e.g. `cmake ../.. -GNinja -DCMAKE_C_COMPILER=gcc-11 -DCMAKE_CXX_COMPILER=g++-11`. |