Incremental Compilation
blog.rust-lang.org
Incremental Compilation
1–10 of 74 posts
Re: Incremental Compilation
#2Re: Incremental Compilation
#3Re: Incremental Compilation
#4Up to 15% faster or more?! =)
Re: Incremental Compilation
#5Up to 15% faster or more?! =)
There's still a bunch of compiler phases they're not caching yet, so it's a very very early result.
Re: Incremental Compilation
#6Nice to see it. Incremental compilation is one of those things that production compilers have but research languages usually don't have. You only need it when you have a lot of code, but then you really need it.
(Having to split up your code manually into separate .cpp [or what have you] files doesn't qualify as incremental compilation—that's just separate compilation. Incremental compilation is when the compiler automatically figures out what needs to be recompiled, even when all you hand it is a big blob of code that hasn't been manually split up by a human in any way.)
Re: Incremental Compilation
#7Re: Incremental Compilation
#8Re: Incremental Compilation
#9How does this differ from what make files have been doing for decades?
Re: Incremental Compilation
#10How does this differ from what make files have been doing for decades?