I want to preprocess C++ header files keeping all macros verbatim in the output text.
For that, I need a C preprocessor-like program that performs these tasks:
- store in memory macros from
#definedirectives; - recursively follow
#includedirectives; - evaluate conditions in
#ifand#ifdefdirectives; - suppress the code in inactive portions of
#if..#else..#endifblocks; - (optionally) remove
/* .. */and//comments; - remove all remaining directives lines.
But the macros must not be replaced in the output. Or alternatively, the preprocessor may take in argument a list of macro names that shall not be replaced.
This may sound weird, but I have a good reason for that. I have a series of Perl scripts able to analyze preprocessed C++ class headers. And I use some macros to tell them for example which methods to export.
I haven't found a preprocessor program able to perform what I need, so I wrote a Perl script. The latter actually works, but is slow and non standard. I am looking for a better alternative.