verstra@programming.devtoRust@programming.dev•Which is more important for rust compilation: higher number of cores or faster single core performance?
15·
3 months agoFor a clean build: number of cores (because cargo builds each crate dependency in a separate process), for a build of your crate only: single core perf.
Oh, i have to try these out to see if it effects my development cycle. I do notice that cargo check is super fast, but cargo build takes a long time. So codegen and linker could be the source of slowness.