Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.