Penguin
Annotated edit history of CompileTime version 3, including all changes. View license author blame.
Rev Author # Line
3 AristotlePagaltzis 1 CompileTime is the time when a [Compiler] analyzes SourceCode and compiles it.
2
3 CompileTime commonly entails [Optimisation]s to improve speed at RunTime. Such [Optimisation]s rely on information that must be available at the time they're done. InLining, for example, can generally be done at CompileTime because the necessary CallGraph information is avaliable.
2 StuartYeates 4
5 See also: KernelCompilationTimes