Understanding Compilation in Linux/GCC
In Linux the gcc works as follows Preprocessing stage --> gcc -E file_name -o ouput_file.i or gcc -E -v file_name -o output_file.i translation process ---> gcc -S -v file_name.i -o output_file.s (generates assembly equivalent instructions in output...
Oct 10, 20142 min read1