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-08 06:35:40 +00: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-08 06:35:40 +00:00
|
|
|
|
2020-01-21 11:11:16 +00:00
|
|
|
[target.x86_64-unknown-linux-gnu]
|
|
|
|
linker = "/usr/bin/clang"
|
2020-06-01 06:18:24 +00:00
|
|
|
rustflags = ["-Clink-arg=-fuse-ld=lld", "-Zshare-generics=y"]
|
|
|
|
|
2020-08-24 02:05:24 +00: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-08 06:35:40 +00: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-08 06:35:40 +00:00
|
|
|
|
2021-08-30 21:56:12 +00:00
|
|
|
[target.aarch64-apple-darwin]
|
|
|
|
rustflags = ["-C", "link-arg=-fuse-ld=/usr/local/bin/zld", "-Zshare-generics=y"]
|
|
|
|
|
2020-06-01 06:18:24 +00:00
|
|
|
[target.x86_64-pc-windows-msvc]
|
2020-08-12 23:44:22 +00:00
|
|
|
linker = "rust-lld.exe"
|
2021-08-30 21:32:09 +00:00
|
|
|
rustflags = ["-Zshare-generics=n"]
|
2020-09-04 21:09:20 +00:00
|
|
|
|
|
|
|
# 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-08 01:32:08 +00:00
|
|
|
#debug = 1
|