2021-02-22 08:42:19 +00:00
|
|
|
# Add the contents of this file to `config.toml` to enable "fast build" configuration. Please read the notes below.
|
2020-06-07 23:35:40 -07:00
|
|
|
|
|
|
|
# NOTE: For maximum performance, build using a nightly compiler
|
2021-04-27 00:46:41 +00:00
|
|
|
# If you are using rust stable, remove the "-Zshare-generics=y" below.
|
2020-06-07 23:35:40 -07:00
|
|
|
|
2020-01-21 03:11:16 -08:00
|
|
|
[target.x86_64-unknown-linux-gnu]
|
|
|
|
linker = "/usr/bin/clang"
|
2020-05-31 23:18:24 -07:00
|
|
|
rustflags = ["-Clink-arg=-fuse-ld=lld", "-Zshare-generics=y"]
|
|
|
|
|
2020-08-23 22:05:24 -04:00
|
|
|
# NOTE: you must manually install https://github.com/michaeleisel/zld on mac. you can easily do this with the "brew" package manager:
|
|
|
|
# `brew install michaeleisel/zld/zld`
|
2020-06-07 23:35:40 -07:00
|
|
|
[target.x86_64-apple-darwin]
|
2021-04-15 00:16:37 +00:00
|
|
|
rustflags = ["-C", "link-arg=-fuse-ld=/usr/local/bin/zld", "-Zshare-generics=y"]
|
2020-06-07 23:35:40 -07:00
|
|
|
|
2020-05-31 23:18:24 -07:00
|
|
|
[target.x86_64-pc-windows-msvc]
|
2020-08-12 16:44:22 -07:00
|
|
|
linker = "rust-lld.exe"
|
2020-09-04 17:09:20 -04:00
|
|
|
rustflags = ["-Zshare-generics=y"]
|
|
|
|
|
|
|
|
# Optional: Uncommenting the following improves compile times, but reduces the amount of debug info to 'line number tables only'
|
|
|
|
# In most cases the gains are negligible, but if you are on macos and have slow compile times you should see significant gains.
|
|
|
|
#[profile.dev]
|
2020-09-07 17:32:08 -08:00
|
|
|
#debug = 1
|