Tagged Questions
The ifdef tag has no wiki summary.
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 ...
10
votes
5answers
6k views
#ifdef #ifndef in Java
I doubt if there is a way to make compile-time conditions in Java like #ifdef #ifndef in C++.
My problem is that have an algorithm written in Java, and I have different running time improves to that ...
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
195 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 ...
6
votes
4answers
543 views
Delphi {$IFDEF CONSOLE} Problem
I just tried
program Project1;
{$APPTYPE CONSOLE}
uses
SysUtils;
begin
{$IFDEF CONSOLE}
beep;
{$ENDIF}
end.
and expected to hear a beep during runtime, but not. The following test ...
5
votes
5answers
679 views
Is it better to use `#ifdef` or inheritance for cross-compiling?
To follow from my previous question about virtual and multiple inheritance (in a cross platform scenario) - after reading some answers, it has occurred to me that I could simplify my model by keeping ...
5
votes
2answers
601 views
Why am I unable to #ifdef stdafx.h?
I am trying to include 2 platform-specific stdafx.h files in my .cpp file, but the compiler is unhappy when I try to #ifdef it.
#ifdef _WIN32
#include "stdafx.h"
#elif _MAC
#include "MAC/stdafx.h"
...
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 ...
4
votes
1answer
405 views
Switching trial and pro builds with android apps in Eclipse: how to make it less painful?
I have an application for Android which comes in two forms: a trial version and a paid "pro" version. The two versions coexists in Android Market and have different package names (let's call them ...
3
votes
6answers
91 views
Using #define in an “if” statement
Is it possible to use #define in an "if" statement? The following code works, but I get a warning that the macro is being redefined.
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
...
3
votes
1answer
233 views
Checking for Presence of Objective-C Framework
I am creating a framework right now that can work with CoreData if you would like. The framework has functionality outside of CoreData as well. How can I wrap all the CoreData specific code in ...
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
111 views
Why do I get compilation errors after I conditionally include stdafx.h?
I'm trying to write a program that compiles in Borland C++ and Visual C++. To do this, I add #ifdef _MSC_VER to include the stdafx.h file when the source is compiled under VS. The code compiles and ...
2
votes
2answers
87 views
Is it possible to set the python -O (optimize) flag within a script?
I'd like to set the optimize flag (python -O myscript.py) at runtime within a python script based on a command line argument to the script like myscript.py --optimize or myscript --no-debug. I'd like ...
2
votes
2answers
241 views
How does System.getProperty(“fast”) work?
In my search for a #ifdef-equivalent in Java, I found this great thread that describes a way to do conditional compilation: #ifdef #ifndef in Java
What I don't understand is how this really works:
...
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
2answers
213 views
Cython conditional compile based on external value
I try to conditionally compile (or generate) to c code from a Cython pxd. I read that I can DEF to define aa value and IF to conditionally generate based on its value, but how can I get this value to ...
2
votes
2answers
703 views
Conditional compilation with Java and ant
I have a problem wit the software I'm working on.
We are accessing Windows system calls via JNA, and we have to define some Windows structure (Java class that extends the JNA Structure) to be able to ...
2
votes
1answer
749 views
When compiling for multiple targets in XCode, how do i ensure that certain files will not be included one target
I searched for a long time on stackoverflow using every keyword I could think of to solve this. I am programming for iphone and I have a lite and paid version of my app. I followed the instructions ...
2
votes
7answers
894 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 ...
2
votes
2answers
664 views
Delphi 2007 and {$IFDEF…} directive, fails to see our conditional
We have the following in our codebase, in a component file:
{$IFDEF ADO}
FDatabase : TADODatabase;
{$ELSE}
FDatabase : TODBCDatabase;
{$ENDIF}
The reason is that for various legacy applications, ...
1
vote
1answer
39 views
In vim, how to check the #ifdef macro I am currently inside?
I use vim/cscope/ctags to browse C source code. Many a times I find a macro is defined is twice or even more times using #ifdefs and I am looking at the definition I don't want.
So my question is, is ...
1
vote
5answers
70 views
Problems with ifdef based inheritance in C++
I was looking at the code of some class I was using, and I came across code like this:
#ifdef SOME_OBSCURE_CONDITION
class A {
#elif
class A : public B {
#endif
Can there be any problems with such ...
1
vote
1answer
203 views
Can I query the compiler about C++0x “alignas” support?
I'm writing a few classes and structs that could benefit from 16-byte alignment. Instead of using compiler-specific hacks, I'd rather use the new C++0x alignas functionality for future portability. ...
1
vote
2answers
829 views
c++ #ifdef Mac OS X question
I am fairly new to C++. I am currently working on a group project and we want to make our classes compatible with both the lab computers (Windows) and my computer (Mac OS X).
Here is what we have ...
1
vote
2answers
85 views
How to include code into the build only when a flag is set?
I have added some debugging code to my app which I want to call only when needed. I remember there is some kind of IFDEF that can be used to conditionally include code into a source file.
For example ...
1
vote
1answer
90 views
Is #endif GUARD_H good practice?
Consider this:
#ifndef GUARD_H
#define GUARD_H
...
#endif GUARD_H
rather than:
#ifndef GUARD_H
#define GUARD_H
...
#endif // GUARD_H
Often I see at the #endif an 'identifier' commented out but ...
1
vote
2answers
305 views
#ifdef macros for versions controlling
I use macros to differ the versions but I can't force it to work properly. I used:
#ifdef _IPHONE_4_0
[[UIApplication sharedApplication] setStatusBarHidden:YES ...
1
vote
1answer
1k views
Xcode multiple targets — #ifdef's running over
I have an Xcode project with seven targets, corresponding to seven iPhone apps. That number may increase. A lot of the targets use a lot of the same classes.
I have reproduced portions of the app ...
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
894 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 ...
1
vote
3answers
360 views
How can I have ifdefs in XAML
I have a lot of XAML code and would like to stay compatible with WPF 3.0 while taking advantage of the WPF 4.0 features. For example, I'd like to use UseLayoutRounding if it's available. Of course, I ...
0
votes
3answers
105 views
Code navigation breaks inside of $IFDEF blocks in Delphi 2010
I have a few conditionally compiled classes in my app.
{$IFDEF SOME_OPTION}
type
TMyClass = class
procedure Foo;
end;
{$ENDIF}
...
{$IFDEF SOME_OPTION}
procedure TMyClass.Foo;
begin
end;
...
0
votes
2answers
48 views
Using conditional rules in a makefile
I capture the intent of the Makefile in pseudo code, then indicate the issues I have. I'm looking for a Makefile which is more user friendly in a test environment. The correct usage of the Makefile is ...
0
votes
1answer
100 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
69 views
Understanding #define #ifdef and Macros in the Linux Kernel
I have just started work on auditing the Linux kernel and I cant help but notice in the source code the multitude of #defines and #ifdefs. I cant seem to understand exactly how these are being used. I ...
0
votes
3answers
208 views
#pragma once vs. include guards [closed]
Possible Duplicate:
#pragma once vs include guards?
I understand what the function/behavioral differences are between:
#pragma once blah
...and...
#ifndef
#define blah
#endif
But what ...
0
votes
1answer
53 views
Conditional statements depending on successful compilation within a Makefile
For a makefile, I am trying to make it run a block of code in case of successful compilation, or an else block otherwise.
I have tried something like this
default:
ifeq ($(gcc -obuild main.c), 0)
...
0
votes
1answer
287 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
4answers
212 views
What is #ifdef __OBJC__ doing and why libraries listed below?
I believe the #ifdef __OBJC__ directive is ensuring that I import the following class libraries for Objective-C only. What is the purpose of listing the class libraries after the ifdef statement? ...
0
votes
1answer
88 views
Enabling ifdef macro used in the static library
Can you use macros defined in static libraries?
I have my own debug macro called TWDEBUG that I use in a static library I create for sharing.
If I import the static library to my new project and use ...
0
votes
1answer
206 views
Doxygen - alternative code usig #ifdef not shown in documentation
I'm developing an cross-platform library. Some pieces of code is platform dependend, so I have to separate it using #ifdef checking the platform type. So I split one class to the two classes each for ...
0
votes
1answer
492 views
How to make debug code using #ifdef directive. Objective-c
i want to make a question about developing using #ifdef directive.
I want do make some code in objective-c only for debug use, for example:
in main function do this:
#define DEBUG_LEVEL
in my ...
0
votes
2answers
165 views
#ifdef doesn't work. But why?
#ifdef doesn't work. But why?
CGFloat maxScale;
if ( [[UIScreen mainScreen] respondsToSelector: @selector (scale)] == YES )
{
NSLog (@"case1");
#define GLOBAL1
}
else
{
NSLog (@"case2");
...
0
votes
2answers
238 views
Qt signal wrapped in an ifdef
My Qt project links to a library that is linux-only. When the project is run under linux, I wish to have a signal fired on an event using a type defined in that library. A complication that I have, ...
0
votes
2answers
925 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 ...
0
votes
1answer
117 views
iphone Can someone please explain to me what #ifdef does here?
Can someone please explain what #ifdef..#else..#endif does in this piece of code? It's from an open-source iphone twitter client.
#ifdef ENABLE_OAUTH
@interface NTLNTwitterClient : ...