From afcb0ac46189cef0d5ae1228fbe53da6d02512e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Ber=C3=A1nek?= Date: Mon, 24 Nov 2025 15:46:11 +0100 Subject: [PATCH] Remove mention of LLD for faster compilation LLD is now used by default on x64 Linux. --- docs/development.md | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/docs/development.md b/docs/development.md index aa02a07f..d4f3e1fe 100644 --- a/docs/development.md +++ b/docs/development.md @@ -157,13 +157,3 @@ When modifying commands, make sure to update both: ## Logs in tests By default, logs are disabled in tests. To enable them, add `#[traced_test]` on top of the test function. - -## Faster compilation -Bors has a lot of dependencies and can be fairly slow to compile. If you want to improve compilation speed, you could use a faster linker, e.g. LLD. - -To do that, install it (e.g. using `sudo apt install lld`) and then put this: -```toml -[build] -rustflags = ["-C", "link-arg=-fuse-ld=lld"] -``` -into `.cargo/config.toml`.