Is there any way to convert C/C++ to Assembly not to HEX.

Not like something that gcc or other compiler done(C/C++ --> ASM --> HEX).

Only Convert It to ASM.

Is there any way to do it by gcc,I mean stop compiler when translate C/C++ to ASM?

with special thanks for your attention,and so sorry for my basic question

link|improve this question

76% accept rate
1  
Hex? You mean that binary encoding of machine code? – delnan Dec 2 '11 at 23:23
Yes,I mean that:D – MoeinHm Dec 2 '11 at 23:24
feedback

2 Answers

up vote 9 down vote accepted

Use the -S option of gcc, for example:

gcc -S hello.c

This will give you a file hello.s with assembly instructions.

link|improve this answer
2  
I'd only add that you can specify the assembly dialect (INTEL vs AT&T) with -masm=intel or -masm=att. – Mrafcho001 Dec 2 '11 at 23:46
@Mrafcho001 is there any way to add special INTEL processor like 8086? – Moein7tl Dec 2 '11 at 23:49
@Moein7tl Are you trying to compile some code such that it would run on an 8086? If so, I believe you're trying to cross-compile. This means you're going to have to setup a cross-compiling toolchain. I dont have any experience with doing that, but I'm sure google will turn something useful up. – Mrafcho001 Dec 2 '11 at 23:56
Adding -fverbose-asm may also be worthwhile. – caf Dec 3 '11 at 3:31
1  
@Moein7tl, gcc has a lot of options to emit code that is tuned to a specific target processor with the --arch=something option. gcc.gnu.org has all the information that you are looking for. – Jens Gustedt Dec 3 '11 at 10:34
show 1 more comment
feedback
gcc -O2 -S -c foo.c

will leave the generated assembly code on the file foo.s.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.