Compiler

From VDR Wiki
Revision as of 20:29, 26 November 2004 by Monroe (talk | contribs) (initial)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

A compiler transforms the source code of a computer program into an executable binary. As libraries are needed, and that is normally the case, those are linked with the binary into the executable binary.

This is clear: only after compilation (and if necessary linking) a program can be executed.

Annotation: akin to the compiler is the interpreter. The interpreter does not transform the program source code, instead it executes it line by line.