aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorwsnipex <wsnipex@a1.net>2022-02-11 10:01:58 +0100
committerwsnipex <wsnipex@a1.net>2022-02-28 11:22:33 +0100
commitaeac374e62cbf5b8bc94504cd9821df2c16400a6 (patch)
tree6eeacd3f78bd356c113f11cd137130e78e8fa4ad /docs
parent5374e04b7e3360b49b7fbc951c8a32b0766f208e (diff)
[cmake] linux: refactor linker selection
Diffstat (limited to 'docs')
-rw-r--r--docs/README.Linux.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/README.Linux.md b/docs/README.Linux.md
index 9c9449f8fa..287446acf3 100644
--- a/docs/README.Linux.md
+++ b/docs/README.Linux.md
@@ -170,6 +170,11 @@ cmake ../kodi -DCMAKE_INSTALL_PREFIX=/usr/local -DCORE_PLATFORM_NAME="x11 waylan
**NOTE:** You can use `gles` instead of `gl` if you want to build with `GLES`.
+**NOTE:** You can use several alternative linkers if available on your system: gnu gold (default), llvm lld or mold
+
+To use an alternative linker, enable it with `-DENABLE_GOLD=ON` or `-DENABLE_LLD=ON` or `-DENABLE_MOLD=ON`
+
+
### 4.2. Build
```
cmake --build . -- VERBOSE=1 -j$(getconf _NPROCESSORS_ONLN)