Penguin
Annotated edit history of Compiler version 10, including all changes. View license author blame.
Rev Author # Line
5 AristotlePagaltzis 1 A [Compiler] is a program to transform source code from one language to another. Commonly, the target language is MachineCode - either that of a "real" silicon [CPU] or of a VirtualMachine.
9 StuartYeates 2
3 A [Compiler] is often refered to by the name of it's executable. Thus on a Solaris platform, the Sun [C] [Compiler] is refered to as [CC], the [GNU] C Compiler is refered to as [GCC] and the Sun [Java] compiler as [javac].
3 StuartYeates 4
10 StuartYeates 5 Most [Compiler]s are usually built using, well, a [CompilerCompiler].
3 StuartYeates 6
4 AristotlePagaltzis 7 See also:
8 * [GCC]
9 * [javac]
9 StuartYeates 10 * [VisualC++]
7 AristotlePagaltzis 11
10 StuartYeates 12 Compare [CompileTime], [DeCompiler] and SoftwareDevelopmentTools.