Code::Blocks Forums

User forums => General (but related to Code::Blocks) => Topic started by: wingstrife on December 13, 2011, 09:08:20 am

Title: How to! complie the cpp source to the asm code
Post by: wingstrife on December 13, 2011, 09:08:20 am
How to! complie the cpp source code to the asm code.....
the option -S just outputs the asm code without any symbol.....how to add the symbol:
for example :

//int a = 10;
asm code may be :

 mov $0xa , 20(%esp);

and it is difficult for reading............
if using this form:

mov $0xa,$a(%esp) ;  ///just like VS

it is easy to understand.....
but how to get asm code with the gcc option in second format.......

possible????
Title: Re: How to! complie the cpp source to the asm code
Post by: oBFusCATed on December 13, 2011, 10:27:47 am
Have you read the rules of the forum? I doubt, so please do so and then ask your question in more appropriate place.
Title: Re: How to! complie the cpp source to the asm code
Post by: thomas on December 13, 2011, 11:53:50 am
You may want to read the compiler documentation, as this is not something Code::Blocks does. Since you said it is not like with Visual Studio, I assume you use gcc: http://gcc.gnu.org/onlinedocs/gcc/

Specifically, you will be interested in the chapters "Debugging Options" and "Code Gen Options".
Title: Re: How to! complie the cpp source to the asm code
Post by: wingstrife on December 14, 2011, 03:05:26 pm
Have you read the rules of the forum? I doubt, so please do so and then ask your question in more appropriate place.


Sorry.....
Title: Re: How to! complie the cpp source to the asm code
Post by: wingstrife on December 14, 2011, 03:06:25 pm
You may want to read the compiler documentation, as this is not something Code::Blocks does. Since you said it is not like with Visual Studio, I assume you use gcc: http://gcc.gnu.org/onlinedocs/gcc/

Specifically, you will be interested in the chapters "Debugging Options" and "Code Gen Options".


Thanks!