Tagged Questions
14
votes
10answers
3k views
Why should #ifdef be avoided in .c files?
A programmer I respect said that in C code, #if and #ifdef should be avoided at all costs, except possibly in header files. Why would it be considered bad programming practice to use #ifdef in a .c ...
8
votes
3answers
2k views
What C preprocessor conditional should I use for OS X specific code?
What C preprocessor conditional should I use for OS X specific code? I need to include a specific library if I am compiling for OS X or a different header if I am compiling for Linux.
I know there is ...
7
votes
6answers
194 views
Best practice for dependencies on #defines?
Is there a best practice for supporting dependencies on C/C++ preprocessor flags like -DCOMPILE_WITHOUT_FOO? Here's my problem:
> setenv COMPILE_WITHOUT_FOO
> make <Make system reads ...
4
votes
2answers
133 views
How to get rid of ifdef's in a large c project
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 ...
3
votes
2answers
160 views
Is there a good online tutorial for writing portable C?
I have some tools I'm working on in portable C that works in Windows Visual Studio 2008 and gcc in Ubuntu Linux based on #ifdef _WIN32 but adding support for Solaris seems to be trickier, especially ...
3
votes
8answers
289 views
What is the best way to only include certain libraries on certain operating systems in c/c++?
When writing an app that one wants to have compile on mac, linux and windows, what is the best way of managing the different libraries that will need to be included on the various operating systems. ...
2
votes
3answers
79 views
Supporting more than one codebase in ANSI-C
I am working on a project, with an associated Ansi-C code base. (let me call this the 'main' codebase).
I now am confronted with a typical problem (stated below), which I believe I would be able to ...
2
votes
7answers
893 views
C - alternative to #ifdef
I'm trying to streamline large chunk of legacy C code in which, even today, before doing the build guy who maintains it takes a source file(s) and manually modifies the following section before the ...
1
vote
6answers
142 views
Are these C #ifdefs for portability outdated?
I'm working with an old C code that still has a few dusty corners. I'm finding a lot of #ifdef statements around that refer to operating systems, architectures, etc. and alter the code for ...
1
vote
4answers
888 views
safe way to use dprintf
Linux has this nice function dprintf:
The functions dprintf() and vdprintf() (as found in the glibc2 library) are exact analogues of fprintf() and vfprintf(), except that they output to a file ...
0
votes
1answer
99 views
C compiler directives with switch/case statements?
What do I do with this switch-case statement in C?
#if defined MY_CONST && define RUN_TEST
case TX_ERROR:
//code here
break;
case RX_ERROR:
//other code here
...
0
votes
1answer
285 views
Android NDK C #ifndef problems
I am using the NDK-r6 on Windows and want to compile a simple C program for testing purposes.
Just compiling a C console program is not this easy, but I got the needed options.
The commandline I use ...
0
votes
2answers
921 views
Visual Studio incorrectly marking inactive code blocks when using `#ifdef`
My project has a bunch of #ifdefs. The macros used by these #ifdefs are usually passed through the command line using the '/D' option to get different build configurations. Visual studio incorrectly ...