Greetings All,
I was wondering about how a build process goes on in Vc++.
I want to know that is there any intermediate assembly file generated while building a source file as what happens with gcc.
If the answer is no ,then why gcc build process has this ones step extra overhead of generating an assembly and then finally an obj using an assembler.This should be time inefficient.
What is the use of generating an intermediate assembly file?
Only one use I can understand is the support of inline assembly in gcc, but for VC++ we need to call the assembler manually.
Please erase my confusion.
Cheers!!