This question : Is there a way to tell whether code is now being compiled as part of a PCH? lead me to thinking about this.

Is there a way, in perhaps only certain compilers, of getting a C/C++ compiler to dump out the defines that it's currently using?

Edit: I know this is technically a pre-processor issue but let's add that within the term compiler.

link|improve this question

To nitpick: That'd a preprocessor feature. – delnan Apr 28 '11 at 22:47
How is seeing the output of a preprocessor not meeting what you're trying to do? – Kirakun Apr 28 '11 at 22:55
Because ISTM that most compliers these days include the pre-processor within them. I've not done C++ for many years but I don't recall ever running the pre-processor myself manually. – Preet Sangha Apr 29 '11 at 23:47
feedback

2 Answers

up vote 1 down vote accepted

Yes. In GCC

g++ -E -dM <file>

I would bet it is possible in nearly all compilers.

link|improve this answer
I haven't stumbled across the feature in any compiler. I'm impressed that gcc has it. – wallyk Apr 28 '11 at 23:18
feedback

Boost Wave (a preprocessor library that happens to include a command line driver) includes a tracing capability to trace macro expansions. It's probably a bit more than you're asking for though -- it doesn't just display the final result, but essentially every step of expanding a macro (even a very complex one).

The clang preprocessor is somewhat similar. It's also basically a library that happens to include a command line driver. The preprocessor defines a macro_iterator type and macro_begin/macro_end of that type, that will let you walk the preprocessor symbol table and do pretty much whatever you want with it (including printing out the symbols, of course).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.