Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org

compile time

You are here: irt.org | FOLDOC | compile time

<programming> The period of time during which a program's source code is being translated into machine code, as opposed to run time when the program is being executed. As well as the work done by the compiler, this may include macro preprocessing as done by cpp for example. The final stage of program construction, performed by the linker, would generally also be classed as compile time but might be distinguished as link time.

For example, static data in a C program is allocated at compile time whereas non-static data is allocated at run time, typically on the stack.

(2004-09-28)

Nearby terms: compiler jock « Compiler Language for Information Processing « Compiler Target Language « compile time » COMPL » complement » Complementary Metal Oxide Semiconductor

FOLDOC, Topics, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, ?, ALL

©2018 Martin Webb