Under the Hood of a Gcc Compiler
Today I learnt something worth publishing here. As developers we write code day by day and it is executed by our machines. But how does our computers understand this code and execute it ? I am going to walk through the four core changes of a GCC compiler to transform a simple C program into a state that a machine can understand and execute. I created a simple file main.c below: ...