+ 5
Do I need a compiler to create a compiler?
Sometimes, I wonder how a compiler like Codeblocks is made?
3 ответов
+ 3
Assembly is the first language to build a compiler as assembly can interact with hardware.
then the compiler build from assembly is used to build another compiler and the series is going on(loop)
source : Wikipedia
+ 1
yes definitely you need to have some program components for transformation higher prog. language into mashine native code.This is compiler.You can have indirect compiling into middle code like assembler and than compile again into mashine native code.If you have interpreted code you do not have any compiler.