From 92e543d51d7598fb0a65ddcca1e0a5055cd068ec Mon Sep 17 00:00:00 2001 From: "Alex.F" Date: Thu, 15 Apr 2021 00:16:37 +0000 Subject: [PATCH] `-Csplit-debuginfo=unpacked` is default on nightly (#1913) https://github.com/rust-lang/cargo/pull/9298 --- .cargo/config_fast_builds | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cargo/config_fast_builds b/.cargo/config_fast_builds index f01e0a7c66..cdada3f49f 100644 --- a/.cargo/config_fast_builds +++ b/.cargo/config_fast_builds @@ -10,7 +10,7 @@ rustflags = ["-Clink-arg=-fuse-ld=lld", "-Zshare-generics=y"] # 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` [target.x86_64-apple-darwin] -rustflags = ["-C", "link-arg=-fuse-ld=/usr/local/bin/zld", "-Zshare-generics=y", "-Csplit-debuginfo=unpacked"] +rustflags = ["-C", "link-arg=-fuse-ld=/usr/local/bin/zld", "-Zshare-generics=y"] [target.x86_64-pc-windows-msvc] linker = "rust-lld.exe"