←back to thread

302 points Bogdanp | 1 comments | | HN request time: 0s | source
Show context
adastra22 ◴[] No.44390813[source]
As a former C++ developer, claims that rust compilation is slow leave me scratching my head.
replies(5): >>44390867 #>>44390918 #>>44391177 #>>44395299 #>>44403069 #
MobiusHorizons ◴[] No.44391177[source]
Things can still be slow in absolute terms without being as slow as C++. The issues with compiling C++ are incredibly well understood and documented. It is one of the worst languages on earth for compile times. Rust doesn’t share those language level issues, so the expectations are understandably higher.
replies(3): >>44392236 #>>44392850 #>>44403086 #
1. pjmlp ◴[] No.44403086[source]
And easily solved with incremental compilers, incremental linkers, external templates and nowadays modules.