We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f59be65 commit a79b9efCopy full SHA for a79b9ef
docs/development.md
@@ -68,6 +68,16 @@ Everytime you want to run bors:
68
- Configure the webhook URL for your app to point to `<address>/github`.
69
- Try `@bors ping` on some PR on the test repository :)
70
71
+## Faster compilation
72
+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.
73
+
74
+To do that, install it (e.g. using `sudo apt install lld`) and then put this:
75
+```toml
76
+[build]
77
+rustflags = ["-C", "link-arg=-fuse-ld=lld"]
78
+```
79
+into `.cargo/config.toml`.
80
81
## Database
82
You must have `sqlx-cli` installed for the following commands to work.
83
```console
0 commit comments