vote up 0 vote down star

For the code:

int  i;

gcc preprocessor outputs:

int i;

How to force it to preserve whitespace?

I call preprocessor with: gcc -E somefile.c command.

flag

72% accept rate
Can you give some context here? When you call it with -E it removes anything that isn't pure code. Why would you need it to preserve whitespace? Maybe there's a better way to do what you're trying to do? – Nathan Fellman Jan 15 '09 at 8:14
I don't think so. I working on static analysis tool which works with preprocessed file, but report about errors in the original file. – Dmitriy Matveev Jan 15 '09 at 15:32

1 Answer

vote up 3 vote down check

Use it in traditional mode, ie '-traditional-cpp' as described here.

link|flag

Your Answer

Get an OpenID
or

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