I got my hands on a opensource project coded in c. It uses #ifdef's for crosscompiling. There are a lot o ifdef's all over the source code. I want just to modify it for one platform. I was thinking to run it through compiler's preprocessor(visual c++) but it will write the preprocessed result to a single file, which i don't need. Anybody knows a way to preprocess a project leaving it's structure intact(all files intact)? No grep, please.

edit:

I found a potential solution(it's amazing what you can find on the internet these days). It's boost.wave - a c++ preprocessor library which can do some interesting stuff. I don't know how it will turn out, but i will give it a try. Still, it's not the final answer, so if you have a solution then i will be glad to hear it.

link|improve this question

7  
why would you want to do this? readability? why not just let the #ifdefs remain so that if you ever want to share your modification, it will still crosscompile. – j-a Dec 30 '11 at 12:22
1  
@j-a i counted 250 ifdef's in the main.c file. It's really a problem to me understanding all what's going on. Plus i want to add only platform specific code to the project. – ilcredo Dec 30 '11 at 12:24
Why are we not allowed to use regexp? – David Heffernan Dec 30 '11 at 12:27
3  
I had the perfect solution in mind, until I read your last sentence. – Philip Dec 30 '11 at 12:29
2  
There's grep on my system. And Perl. And Python. How does anyone get anything done without these basic tools? – David Heffernan Dec 30 '11 at 12:59
show 8 more comments
feedback

2 Answers

up vote 3 down vote accepted

There are two tools I know of that you could use to do this semi-automatically.

One is sunifdef (son of unifdef). AFAIK, this is no longer being maintained, though (and neither is unifdef on which it is based).

The other is coan, which is being actively maintained, and is a development of sunifdef.

See also: Is there a C pre-processor which eliminitates #ifdef blocks based on values defined/undefined?.

As it happens, I'm still using sunifdef on the main project at work where I'm eliminating archaic code (for example, machines not supported since about 1996) from the code base. The only gotcha I have with it is that if a line goes in with parentheses like this:

#if (defined(MACH_A) && defined(PROP_P)) || (defined(MACH_B) && defined(PROP_Q)) || \
    (defined(MACH_C) && defined(PROP_R))

and we have -UMACH_C (so machine C is no longer supported), the output line is:

#if defined(MACH_A) && defined(PROP_P) || defined(MACH_B) && defined(PROP_Q)

Technically, that's fine; it is correct. It is just preferable to keep the extra, technically redundant parentheses in the expression.

One caveat: although I can answer for these compiling on Unix-based systems, I've not personally checked them out on Windows.

link|improve this answer
It's nice that there is a tool. Since it works, i can set up a Linux VM to clean the code. – ilcredo Dec 30 '11 at 18:36
I was checking the website, and i found that the windows 7 is supported too(even 64bit). – ilcredo Dec 31 '11 at 7:44
feedback

Comment out/remove the #include directives, preprocess it, reinstate the includes.

You'll need to make sure any macros used by the #ifdef are available, of course.

link|improve this answer
Nice. I'll remember this technique for dealing with single files. – ilcredo Dec 30 '11 at 18:38
feedback

Your Answer

 
or
required, but never shown

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