mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-03 17:44:30 +00:00
chore: Enable v0 symbol mangling (#2985)
https://github.com/rust-lang/rust/issues/60705 Due to modification of .cargo/config.toml your `cargo build` should pick this change up automatically. Use `legacy` instead of `v0` if you find yourself in need of old mangling scheme for whatever reason Release Notes: - Improved precision of backtraces in application crashes
This commit is contained in:
parent
616d328f3c
commit
230061d838
1 changed files with 4 additions and 0 deletions
|
@ -1,2 +1,6 @@
|
|||
[alias]
|
||||
xtask = "run --package xtask --"
|
||||
|
||||
[build]
|
||||
# v0 mangling scheme provides more detailed backtraces around closures
|
||||
rustflags = ["-C", "symbol-mangling-version=v0"]
|
||||
|
|
Loading…
Reference in a new issue