Possible Duplicate:
Using GCC to produce readable assembly?
For example, when I try:
gcc -c myprogram
it will give me an object file, which is in binary form. What I would like to get is just an assembly file (right before it is processed by an assembler to produce the object file). Is there a way to do it in gcc?