Tagged Questions
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 ...
5
votes
3answers
2k views
booleans inside #ifdef statements?
In C++, is this:
#ifdef COND_A && COND_B
the same as:
#if defined(COND_A) && defined(COND_B)
?
I was thinking it wasn't, but I haven't been able to find a difference with my ...
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
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. ...
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
1answer
180 views
What does #ifdef 1 in C++
in C++, I know that programmers use #ifdef 0 to block out code from running, but in this same project I see a lot of #ifdef 1. Does this mean that the code always runs? Unfortunately the code does not ...
0
votes
3answers
181 views
Detect compilation on Bada OS
I would like to do something similar to #ifdef __linux__, but with the bada SDK. Is there a constant defined by default?
Also, can I detect when I am compiling for the simulator?
0
votes
1answer
477 views
#ifdef with gfortran 77
I am using gfortran to compile FORTRAN 77 and would like to have DEBUG build options by using the preprocessor directive #ifdef. However, when I use them I get compile time warnings "Illegal ...