Tool/Parser for preprocessor #if statements?

后端 未结 4 538
难免孤独
难免孤独 2021-02-09 05:46

I am working on many C-sourcecode files which contain many preprocessor #if, #elseif and #else statements.

This statements often c

4条回答
  •  粉色の甜心
    2021-02-09 06:10

    You can run the GNU compiler using command line option -E to do the preprocessing.

    http://gcc.gnu.org/onlinedocs/gcc/Preprocessor-Options.html

提交回复
热议问题