9 lines
293 B
TOML
9 lines
293 B
TOML
# Use clang + the mold linker to dramatically cut link times during iteration.
|
|
# Both `clang` and `mold` are available on this machine.
|
|
[target.x86_64-unknown-linux-gnu]
|
|
linker = "clang"
|
|
rustflags = ["-C", "link-arg=-fuse-ld=mold"]
|
|
|
|
[alias]
|
|
clean-target = "run -p xtask --bin clean-target --"
|