I wonder what is compiling, what happens when you compile? I mean yes you press compile or type in in the console but what does it actually do in the "background"?
|
|
For the brief details see Wikipedia. For the gory details see the dragon book (every student of computer science should study this book). |
|||||||||||||||||||
|
|
See this Basically, magic elves and fairies turn human readable code into machine code. |
||||
|
|
|
A very brief overfiew would be a compiler parses your code checking for errors and then transforms it into byte or machine code. For a better overview I would read the wikipedia article on compilers: |
|||
|
|
|
Or this. The Dragon Book, the original source for building compilers. |
|||||
|
|
Compiling is translating source code to machine code. Usually a compiler (or interpreter) will generate an intermediate code sometimes called byte code which runs on a virtual machine (this is how java is compiled). The byte code is translated by the vm to machine specific code thats runs on the particular architecture you are targeting. This whole process can be considered "compiling" |
|||||
|