Is it possible to instruct the GCC preprocessor not to remove comments when processing files?
A:
Yes, you can do it with the -C
option. E.g.
gcc -C -E myfile.c
Charles Bailey
2010-02-05 16:12:31
+3
A:
GCC has the -C option to preserve comments.
`-C'
Do not discard comments. All comments are passed through to the
output file, except for comments in processed directives, which
are deleted along with the directive.
You should be prepared for side effects when using `-C'; it causes
the preprocessor to treat comments as tokens in their own right.
For example, comments appearing at the start of what would be a
directive line have the effect of turning that line into an
ordinary source line, since the first token on the line is no
longer a `#'.
TheGrandWazoo
2010-02-05 16:14:10
+1
A:
man gcc
and use / -C (slash, space, dash, capitcal C) to make less (which is probably your pager program) search for the -C option, use n to search again (the description is the 3rd hit). Related options are both above and below.
Roger Pate
2010-02-05 16:14:32