From 2c042e35300092886543d128c26af418f8bb0e06 Mon Sep 17 00:00:00 2001 From: Martin Janiczek Date: Sat, 31 Jul 2021 18:38:06 +0200 Subject: [PATCH] Documentation: Make docs for CLionConfiguration more understandable --- Documentation/CLionConfiguration.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Documentation/CLionConfiguration.md b/Documentation/CLionConfiguration.md index 2ea12fb0c92..90dca30a5db 100644 --- a/Documentation/CLionConfiguration.md +++ b/Documentation/CLionConfiguration.md @@ -12,6 +12,8 @@ After opening the `serenity` repository in CLion as a new project, the "`Open Pr `CMake Options`: `-G Ninja -DBUILD_LAGOM=ON -DCMAKE_C_COMPILER=gcc-10 -DCMAKE_CXX_COMPILER=g++-10` +> The `gcc-10` and `g++-10` are not special-meaning strings, they're paths to your GCC compiler executables, and should be findable through `PATH`. It is entirely possible you might have to instead use something like `-DCMAKE_C_COMPILER=/opt/homebrew/bin/gcc-11 -DCMAKE_CXX_COMPILER=/opt/homebrew/bin/g++-11` instead of the above. + `Build Directory`: `Build/i686` > _If you have not built the Toolchain at this point, please do so: `./Toolchain/BuildIt.sh`_