Post #3898224
2026-07-17 23:46 UTC
for 100k loc?
Replies (2)
-
@asdfasdfasdf@lemmy.world 2026-07-18 00:13
Yeah I doubt it. I’ve worked in large Rust codebases too. I’d do some benchmarking. Cargo has some nice flags that let you see exactly what it’s doing. You can open the compilation report up in a browser and zoom in on different steps of the process and see everything.
-
@MangoCats@feddit.it 2026-07-18 02:59
100k loc without a reasonable architecture is… problematic. I have run into problems with C++ linker/optimizers which will choke on big (50k loc) .cpp files which are auto-generated from definitions, they get slow like that, build times around 20 minutes for the worst of them. Keep the files more like 10k loc and down if you don’t want this kind of issue.