vote up 1 vote down star

Hi

i want to know how could we look at the c file after it has been expanded by the preprocessor before compilation with all the macro values put in the code inside the function where ever they are used. in there a way to do it?

flag

76% accept rate
a shame we can't add more tags, this could also benefit from being tagged preprocessor related. – Anacrolix Nov 5 at 14:57

2 Answers

vote up 13 vote down check

You can ask gcc to do it for you gcc -E yourfile.cpp

That will expand macros and include files, all the preproccessing.

link|flag
vote up 7 vote down

Just run it through cpp:

cpp file.c
link|flag
1  
add -nostdinc to the cpp invocation to prevent standard headers from being expanded. – pmg Nov 5 at 11:45
is there a similar option is gcc also ? – benjamin button Nov 5 at 11:54
-nostdinc also works for gcc with the -E argument :) – pmg Nov 5 at 12:04

Your Answer

Get an OpenID
or

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