Compiler: Difference between revisions

From VDR Wiki
Jump to navigation Jump to search
(initial)
 
(No difference)

Latest revision as of 20:29, 26 November 2004

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.