16
top 4 comments
sorted by: hot top controversial new old
[-] voklen@programming.dev 4 points 7 hours ago

For me the biggest speedup in my workflow was not through actually cutting down on the build time but rather using cargo watch. With cargo watch -x run, it automatically rebuilds and runs on any change so by the time I switch to the terminal it's almost completely ready.

[-] KillTheMule@programming.dev 1 points 11 hours ago

Huh, I did not know that you can speed up builds by stripping debug info, need to try that out :)

[-] BB_C@programming.dev 5 points 16 hours ago

With all the respect to the author and his wild experiments, that title does not match the linker-only focus of the content.

So not only the post ended up with two (IMHO) bad recommendations (disabling debug info, building non-relocatable binaries with musl). But it also didn't mention other important factors like codegen-unitsand codegen-backend. Since you know, code generation is the other big contributor to the cycle time (the primary contributor even, in many cases). There is also other relevant options like lto and opt-level.

Let's assume that opt-level shouldn't be changed from defaults for no good reason.

With codegen-units, it's not the default that is the problem, but the fact that some projects set it to 1 (for performance optimization reasons), but without adding a separate profile for development release builds (let's call it release-dev).

Same goes for lto, where you can have it set to "full" in your optimized profile, and completely "off" in release-dev.

And finally, with codegen-backend, you can enjoy what is probably the biggest speed up in the cycle by using cranelift in your release-dev profile.

And of course you are not limited to just two release profiles. I usually use 3-4 myself. Profile inheritance makes this easy.

And finally, you can set/not set some of those selectively for your dependencies. For example, not using cranelift for dependencies can render the runtime performance delta negligible in some projects.


Using the parallel rustc front-end might become an interesting option too, but it's not ready yet.

[-] Deebster@infosec.pub 2 points 17 hours ago* (last edited 17 hours ago)
[target.x86_64-unknown-linux-gnu]
linker = "/usr/bin/clang-15"`
rustflags = ["-C", "link-arg=--ld-path=/usr/local/bin/mold"]

Can you put something like mold or env mold for better portability?

If not, I guess it's not so bad to edit and do git update-index --assume-unchanged .cargo/config.toml but it's a bit hacky since any further changes also get ignored.

this post was submitted on 14 Nov 2024
16 points (94.4% liked)

Rust

5989 readers
51 users here now

Welcome to the Rust community! This is a place to discuss about the Rust programming language.

Wormhole

!performance@programming.dev

Credits

  • The icon is a modified version of the official rust logo (changing the colors to a gradient and black background)

founded 1 year ago
MODERATORS