How do I compile to assembly instead of an executable with gcc. I know there is an -S flag, but where do I use it in the makefile. For example, if I use fla
Put it pretty much anywhere.
gcc -O3 -S -o output.asm ...
will store the generated assemby in output.asm.
output.asm