Let's say I have a source file with many preprocessor directives . Is it possible to see how it looks after the preprocessor is done with it ?
|
4
|
|||||||||
|
|
|
|
||
|
|
|
|
Most compilers have an option to just run the preprocessor. e.g., gcc provides -E:
So you can just run:
If you can't find such an option, you can also just find the C preprocessor on your machine. It's usually called cpp and is probably already in your path. Invoke it like this:
If there are headers you need to include from other directories , you can pass -I/path/to/include/dir to either of these, just as you would with a regular compile. For Windows, I'll leave it to other posters to provide answers as I'm no expert there. |
|||
|
|
|
|
In Visual Studio you can compile a file (or project) with /P. |
||
|
|
|
|
try cl /EP if you are using MS Cpp compiler. |
||
|
|
|
|
Right-click on the file on the Solution Explorer, goto Properties. Under Configuration Properties->C/C++->Preprocessor, "Generate Preprocessed File" is what you are looking for. |
||
|
|
|
|
You typically need to do some postprocessing on the output of the preprocessor, otherwise all the macros just expand to one liners, which is hard to read and debug. For C code, something like the following would suffice:
For C++ code, it's actually a lot harder. For GCC/g++, I found this perl script useful. |
||
|
|
