NOflake/users/tao/cargo.toml

41 lines
884 B
TOML
Raw Normal View History

2024-03-16 18:54:05 -07:00
[alias]
rr = "run --release"
[build]
target = "x86_64-unknown-linux-gnu"
2024-03-17 00:22:50 -07:00
# rustc-wrapper = "${pkgs.sccache}/bin/sccache"
rustc-wrapper = "path/to/sccache"
2024-03-16 18:54:05 -07:00
rustflags = ["-Z", "threads=8"]
[unstable]
codegen-backend = true
[provile.dev]
debug = 0
strip = "debuginfo"
opt-level = 1
lto = "off"
codegen-backend = "cranelift"
[profile.dev.package."*"]
# slow clean build for faster incrementals
opt-level = 3
[profile.release]
incremental = true
codegen-units = 1
lto = "fat"
# [target.x86-unknown-linux-musl]
# # linker = "musl-gcc"
# linker = "clang"
# rustflag = ["-C", "target-cpu=native", "link-arg=ld-path=${pkgs.mold}/bin/mold"]
[target.x86-unknown-linux-gnu]
# linker = "musl-gcc"
linker = "clang"
rustflag = ["-C", "target-cpu=native", "link-arg=ld-path=${pkgs.mold}/bin/mold"]
# https://benw.is/posts/how-i-improved-my-rust-compile-times-by-seventy-five-percent
# jonhoo