What I am trying to do is have the C preprocessor output #ifdef, #else, and #endif directives. That is, I would like to somehow "escape" a directive so that the output of the preprocessor includes the directive were the preprocessor to run on the output.

Is it possible to "escape" a CPP directive so that it is outputted by the preprocessor such that the output of an escaped directive would be a preprocessor directive if the CPP output were to be itself preprocessed?

link|improve this question

This won't compile. – sidyll Oct 7 '11 at 13:06
1  
@sidyll It would if the OP ran it through the preprocessor twice. – Mark B Oct 7 '11 at 13:09
2  
I suspect there are better tools for what you have in mind, like using a general purpose macro-processor or writing a preprocessing script in a convenient language. – Nicola Musatti Oct 7 '11 at 13:17
2  
@Daniel give m4 a try :-P – sidyll Oct 7 '11 at 14:14
2  
Related (almost a dupe): cpp: delay #include's until second pass – cHao Oct 7 '11 at 16:06
show 4 more comments
feedback

3 Answers

up vote 8 down vote accepted

A slight variant of Marcelo Cantos's answer works for me on GNU cpp 4.4.3:

#define HASH(x) x

...

HASH(#)ifdef __cplusplus
class foo { };
HASH(#)endif
link|improve this answer
Creative use of preprocessor mechanics. – Mark B Oct 7 '11 at 13:35
2  
+1. The only (tiny) glitch is that it indents the # by one space. I believe some older preprocessors don't like that, so the convention is to indent the command (ifdef/endif/include...), but not the #. In any case, the answer is correct, and very creative. – Marcelo Cantos Oct 7 '11 at 13:45
1  
@MarceloCantos: Yeah, I have no idea where that space is coming from. (It's not the obvious: the space appears even with #define HASH(x)x.) – Ilmari Karonen Oct 7 '11 at 13:54
I'd guess the space is something to do with the way that macro substitution avoids certain things that could be construed as token-pasting. So it doesn't want to emit a # without a preceding space, because the # could end up attached to a preceding token. Not sure, though. – Steve Jessop Oct 7 '11 at 15:56
@Marcelo: do we still have to worry about those pre-C89-standard compilers? I've never followed that convention, and it's never hit me, but then I first wrote C in 2002 or thereabouts, and I've never worked on truly decrepit systems unless you count Symbian/C++. The idea of writing to first edition K&R is sort of scary, I've never even had a copy... – Steve Jessop Oct 7 '11 at 16:00
show 1 more comment
feedback

EDIT: The following answer only appears to work on earlier versions of cpp. It breaks somewhere between 4.2.1 and 4.3.2. gcc -E and g++ -E break even earlier. See comments for the details.


Here's one trick that seems to work:

#define HASH() #

...

HASH()ifdef __cplusplus
class foo { };
HASH()endif

You'll have to use cpp directly, since a compiler will try to immediately consume the preprocessor output and won't know what to do with the unprocessed directives.

link|improve this answer
g++ -E FWIW.. – Lightness Races in Orbit Oct 7 '11 at 13:11
3  
I get an error with GCC's preprocessor: "error: '#' is not followed by a macro parameter" – Daniel Trebbien Oct 7 '11 at 13:14
@DanielTrebbien: How did you invoke it? I just pasted the above code into a text file and ran cpp file.c. It spat out a class definition surrounded by #ifdef ... #endif. – Marcelo Cantos Oct 7 '11 at 13:17
... Ah, I see. You used the g++ -E suggestion. That appears to fail, for reasons I can't fathom at present. Perhaps cpp is more tolerant. – Marcelo Cantos Oct 7 '11 at 13:20
1  
It fails for me using cpp too. cpp --version prints cpp (Debian 4.3.2-1.1) 4.3.2, in case anyone is curious. Edit: same result on another box with cpp (Ubuntu 4.4.3-4ubuntu5) 4.4.3. – Ilmari Karonen Oct 7 '11 at 13:22
show 3 more comments
feedback

Another trick that seems to work is:

#define EMPTY
EMPTY#ifdef

With GCC's preprocessor (version 4.5.2) I get:

 #ifdef

For some reason, this technique has the same leading space issue as Ilmari Karonen's solution, but this is probably not an issue with modern standards-conforming C preprocessors.

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.