vote up 6 vote down star
1

In general, I occasionally have a chain of nested macros with a few preprocessor conditional elements in their definitions. These can be painful to debug since it's hard to directly see the actual code being executed.

A while ago I vaguely remember finding a compiler (gcc) flag to expand them, but I had trouble getting this to work in practice.

flag

retagged gcc, based on content – Jay Bazuzi Sep 20 '08 at 0:24

7 Answers

vote up 10 vote down check

gcc -E will output the preprocessed source to stdout.

link|flag
vote up 1 vote down

Debug the dissasembly with the symbols loaded.

link|flag
vote up 4 vote down

For MSVC users, you can right-click on the file/project, view the settings and change the file properties to output preprocessed source (which typically in the obj directory).

link|flag
vote up 4 vote down

This might not be applicable in your situation, but macros really do hamper debugging and often are overused and avoidable.

Can you replace them with inline functions or otherwise get rid of them all together?

link|flag
Thanks; good advice. I was asking not because of a particular situation but because I had trouble in the past with this and anticipate more in the future. Much of the code I maintain (mostly not written by me) extensively uses macros, so it's still useful to be able to debug them. – Tyler Sep 20 '08 at 1:14
vote up 1 vote down

You should probably start moving away form Macros and start using inline and templates.

Macros are an old tool, the right tool sometimes. As a last resort remember printf is your friend (and actually printf isn't that bad a friend when your doing multithreaded stuff)

link|flag
vote up 0 vote down

GCC and compatible compilers use the -E option to output the preprocessed source to standard out.

gcc -E foo.cpp

Sun Studio also supports this flag:

CC -E foo.cpp

But even better is -xdumpmacros. You can find more information in Suns' docs.

link|flag
vote up 1 vote down

gcc -save-temps will write out a .i (or .ii file for C++) which is the output of the C preprocessor, before it gets handed to the compiler. This can often be enlightening.

link|flag

Your Answer

Get an OpenID
or

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