The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
57 views

In C, is there a better way to calculate uncertainty values?

What I've been doing is using a #define UNC (uncertainty) to toggle on and off the functionality for calculating x (the value) and dx (the uncertainty). It works pretty well, but it's not easy to read ...
0
votes
1answer
9 views

How do you define constantname for #IfDEF (VS 2010)?

I want to add conditions to show certain layout/theme based on build, for example: I want to define a constant for 2 apps (both debug and release) #IFDEF APP1.Debug --- display layout 1 #IFDEF ...
2
votes
4answers
58 views

How do I check if one of multiple macros is defined in a single #ifdef?

I have some C++ code, and want to perform an action if the __APPLE__ or __linux macros are defined. If I did it as a normal if conditional, it would be easy using ||: if (something || something) { ...
-1
votes
2answers
55 views

How to make the Qt project file (.pro) platform dependent?

Is there a way to include different libraries depending on the operating system with Qt-Creator? In other words, is there an equivalent for the following lines in the .pro file: #ifdef Q_WS_WIN ...
0
votes
1answer
98 views

Is there an #ifdef stripping C/C++ utility [duplicate]

Is there a utility that can strip out say "#ifdef PRO_VERSION ... #endif" code? Please don't tell me about the Visual Studio compiler flag or XCode's view postprocessed source. I can't automate it ...
0
votes
3answers
114 views

How to #ifdef by CompilerType ? GCC or VC++

I used #ifdef Win32 for safe calls alike sprintf_s but now I want to build project with MinGW and it's just wrong now. I need to use #ifdef VC++ or somehow like that. Is it possible?
1
vote
3answers
68 views

Workaround for ifdef / ifndef

I have a class A, and two classes, B and C, inheriting from A. Apart from the methods from A, each class is to offer different things, and, therefore, I'd like to put them in two different files -- ...
0
votes
1answer
68 views

Check for librt linking

Is there a macro that I can #ifdef for to check if librt has been linked to, ie by -lrt with gcc?
2
votes
1answer
129 views

Qt Creator's intellisense grays out #ifdef _DEBUG blocks even though Debug build is selected

When I have in my code an #ifdef like this #ifdef _DEBUG printf("This is a debug build"); #endif Qt Creator grays out the printf even though it is a debug build, and when I run it "This is a ...
0
votes
0answers
81 views

ANTLR how to evaluate ifdef else end statement

I would like to know how to evaluate ifdef ... else ... end statement which could be put anywhere in a code. I start with a simple example who implement 2 basic function add(p1,p2) and diff(p1,p2) ...
0
votes
1answer
374 views

Using ifdef and ifndef directives

I'm trying to check whether a variable is defined using ifndef/ifdef, but I keep getting a not found error from the execution. I'm using GNU Make 3.81, and here is a snippet of what I have: all: ...
-1
votes
3answers
88 views

Counting the number of # includes and # define

I'd like to use C program to find the total number of directives like #include, #define, #ifdef, #typedef, etc. Could you suggest any logic for that? I'm not interested in using any scripting or ...
1
vote
3answers
121 views

Usage of #if defined for function definition

I need to know if the usage of #if defined is correct and know the possible cons of using it this way. #if defined TEST int foo() { return 0; } int foo1() { return 0; } #else int foo() { ...
1
vote
2answers
313 views

#ifdef equivalent in Java? [duplicate]

Possible Duplicate: #ifdef #ifndef in Java I'm trying to implement some debug messages in my Android code by using something like this: private static final boolean DEBUG = false; if ...
5
votes
1answer
2k views

Whats the difference between #if and #ifdef Objective-C preprocessor macro?

How to define preprocessor macros in build settings, like IPAD_BUILD, and IPHONE_BUILD (and how to use them in my factory methods)? I'm using these by heart now, would be cool to know what is going ...
0
votes
1answer
67 views

How #ifndef works in different files

So I was trying to include the libraries I have declared in my main.cpp to my header.h //In my main.cpp #include <cmath> #include <deque> #include <vector> using namespace std; ...
1
vote
2answers
105 views

ifdef syntax doesn't work

I want dynamically define a constant based on the different device heights. I tried to use this code but it doesn't work: #define isPhone568 ([[UIDevice currentDevice] userInterfaceIdiom] == ...
0
votes
1answer
357 views

zbar #ifdef issue with minizip in iOS

i need to write the #import "ZBarSDK.h" into the #ifdef OBJ part, because Minizip does not work if there's an import at another place! #ifdef __OBJC__ #import <UIKit/UIKit.h> #import ...
2
votes
2answers
84 views

how to stop the pre-compile in C?

Look at the code in config.h: #if (API_TYPE == 1) #define URL_API @"https://dapi.xxx.com/1.1/" #elif (API_TYPE == 2) #define URL_API @"https://tapi.xxx.com/1.1/" #elif (API_TYPE == 3) ...
0
votes
2answers
159 views

VS2010 Compiler define

In gcc I am writting friend class FriendMaker<T>::Type but Visual Studio wants friend FriendMaker<T>::Type. So I think it is time to go compiler specific. So What I need to ifdef for ...
1
vote
1answer
325 views

Indexing all #ifdef and #else blocks with CDT

I would like to index every #ifdef and #else blocks in my C/C++ source files with my CDT indexer 8.0.2 on Eclipse indigo on unbuntu Adding symbols wouldn't work since it would not cover #else blocks ...
1
vote
1answer
132 views

make, g++ : preprocessors directives have no effect

I am experiencing technical difficuties with preprocessor directives : #ifdef, #define I have a program built by a Makefile, and I have 2 options two build it : standalone or embedded. I did ...
1
vote
2answers
226 views

Can I use #ifdef in a .def?

Can I use #ifdef sections in a .def file for a dll? E.g.: LIBRARY "mydll" EXPORTS checkRequirements createDevice installDriver isPastVersionInstalled removeDevice #ifdef myVar ...
1
vote
2answers
2k views

How to use preprocessor checks in header file?

Okay I know there's a lot of posts on this, but I'm still having trouble. Here's the pseudo code for what I'm trying to do: if(device is running iOS 5 or up) @interface RootViewController : ...
3
votes
1answer
418 views

How can I check the existence of an environment variable?

The documentation for if/ifdef is slightly confusing. For <?if [expression] ?>, it states: Variables can be used to check for existence ... If the variable doesn't exist, evaluation ...
1
vote
1answer
220 views

Why is my ifndef section not working?

I have the following snippet in my program.wxs file: <?ifndef $(var.TwoOnly) ?> <Feature Id="FeatureOne" ... > ... </Feature> <?endif ?> <?ifndef ...
4
votes
3answers
118 views

Programmatically determine via ifdef if a label is defined within a Translation Unit

I have the following bit of code, I expect that given cstdio is included that the first line will be printed, however the second line is printed. What am I doing wrong? is it possible to know if ...
1
vote
3answers
1k views

#ifdef in Android

I am writing application for Android, my application must be launched under Android 2.2 and Android 4.0.3, I want to use something like #ifdef in Android but I still can't find the way how I can do ...
4
votes
5answers
1k views

Implement #ifdef in Java

I have an algorithm written in C and it has code which can be handled by C preprocessor but as there is no preprocessor in java i don't know how to write java code to handle such thing. The C code is ...
2
votes
5answers
220 views

How can I strip Windows drive lettering out of my reformed path? Delphi or Pascal

Further to this answered question I have another sticky problem. My coding is Free Pascal but Delphi solutions will work probably. In brief, I have a string value of concatenated paths that is ...
0
votes
3answers
672 views

Can I #ifdef #imports?

Can I #ifdef #imports in objective-c? For example: #ifdef USE_A #import "ClassA.h" #endif #ifdef USE_B #import "ClassB.h" #endif
0
votes
3answers
257 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
6k 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 ...
4
votes
2answers
282 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
6answers
837 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) { ...
1
vote
1answer
216 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 ...
0
votes
1answer
506 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 ...
2
votes
3answers
651 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 ...
0
votes
1answer
274 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 ...
1
vote
5answers
116 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 ...
4
votes
2answers
315 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 ...
1
vote
3answers
1k views

#pragma once vs. include guards [duplicate]

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
214 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) ...
1
vote
1answer
373 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. ...
0
votes
1answer
828 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 ...
7
votes
6answers
341 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 ...
0
votes
1answer
823 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
1k 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? ...
7
votes
2answers
7k 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 ...
6
votes
1answer
1k 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 ...

1 2