|
|
|
|
|
by yogthos
23 days ago
|
|
Thanks, that's helpful to keep in mind. Looks like you can fiddle with organizing the project in way where you can balance 1 and 2 in a reasonable way. Right now, it's definitely the second step that's killing me where assembling the crates together takes forever. |
|
If you suspect the issue is assembling all the files together (e.g. linking) you can see some advice on optimizing link speeds here
https://nnethercote.github.io/perf-book/build-configuration....
Note that there could be other causes of slow compilation of the final binary. For example, if you heavily use (especially procedural) macros, it's known to make compilation quite slow.