|
|
|
|
|
by pjmlp
1912 days ago
|
|
I never compile C++ projects from scratch like I am forced to do with Rust. The only code I compile from scratch in C++ is the code I write myself, everything else is available as binary libraries, something that cargo doesn't do, and it is not part of the near future roadmap, if ever. Then, after compiled, most of the stuff lands on the VC++ metadata files, so incremental compilation and linking cuts even more time from the usual edit-compile-debug workflow. |
|