19

This has always racked my brain. Compilers compile code. I imagine that the compiler is coded. So to actually run the code for a compiler, you'd have to compile it.

How was the first compiler compiled?

1
  • 4
    It's like understanding recursion, you have to first understand recursion.
    – Urda
    Commented Apr 25, 2010 at 20:26

1 Answer 1

23

The first compiler was written in assembly for the A-0 programming language in 1952. See Wikipedia for more info.

The first compiler that could compile itself was written for and in Lisp in 1962. This is called a self-hosting or bootstrapping compiler.

2
  • 8
    For a long time, many programs (including compilers) were written directly in machine code or in assembly language. Commented Apr 25, 2010 at 12:48
  • 4
    As a note, gcc has an interesting bootstrap. You compile a minimal gcc with the system compiler, then use this minimal gcc to compile "big" gcc, then use this "big" gcc to compile another "big" gcc so you can confirm the whole thing worked. Commented Jun 26, 2012 at 22:08

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .