summaryrefslogtreecommitdiff
path: root/Documentation/CLionConfiguration.md
diff options
context:
space:
mode:
authorMartin Janiczek <martin@janiczek.cz>2021-07-31 18:38:06 +0200
committerAndreas Kling <kling@serenityos.org>2021-08-03 10:45:33 +0200
commit2c042e35300092886543d128c26af418f8bb0e06 (patch)
tree655354627e70858dc1caead7f6913a30409aa25d /Documentation/CLionConfiguration.md
parent26d726134700fc6a8b4a8d3a72850c6d0d83929a (diff)
downloadserenity-2c042e35300092886543d128c26af418f8bb0e06.zip
Documentation: Make docs for CLionConfiguration more understandable
Diffstat (limited to 'Documentation/CLionConfiguration.md')
-rw-r--r--Documentation/CLionConfiguration.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/Documentation/CLionConfiguration.md b/Documentation/CLionConfiguration.md
index 2ea12fb0c9..90dca30a5d 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`_