Препроцессор GCC удаляет комментарии - PullRequest
3 голосов
/ 05 февраля 2010

Можно ли поручить препроцессору GCC не удалять комментарии при обработке файлов?

Ответы [ 3 ]

4 голосов
/ 05 февраля 2010

GCC имеет опцию -C для сохранения комментариев.

`-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 `#'.
2 голосов
/ 05 февраля 2010

man gcc и используйте / -C (косая черта, пробел, тире, капитальный C), чтобы уменьшить (что, вероятно, ваша пейджинговая программа) поиск опции -C, используйте n для поиска снова (описание - 3-й хит). Связанные опции как выше, так и ниже.

2 голосов
/ 05 февраля 2010

Да, вы можете сделать это с опцией -C. Э.Г.

gcc -C -E myfile.c
...