diff --git a/.cargo/config_fast_builds b/.cargo/config_fast_builds index bf2a615a31fda..12d12048a83d6 100644 --- a/.cargo/config_fast_builds +++ b/.cargo/config_fast_builds @@ -14,4 +14,9 @@ rustflags = ["-C", "link-arg=-fuse-ld=/usr/local/bin/zld", "-Zshare-generics=y"] [target.x86_64-pc-windows-msvc] linker = "rust-lld.exe" -rustflags = ["-Zshare-generics=y"] \ No newline at end of file +rustflags = ["-Zshare-generics=y"] + +# 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] +#debug = 1 \ No newline at end of file