Tagged Questions

Compilation of certain parts of source code will be included/excluded. This can be often reached by pre processing the source code in some way. Including/Excluding parts of the source may be controlled by pre processor keywords.

learn more… | top users | synonyms

26
votes
2answers
10k views

What #defines are set up by Xcode when compiling for iPhone

I'm writing some semi-portable code and want to be able to detect when I'm compiling for iPhone. So I want something like #ifdef IPHONE_SDK.... Presumably Xcode defines something, but I can't see ...
19
votes
8answers
5k views

Determining 32 vs 64 bit in C++

I'm looking for a way to reliably determine whether C++ code is being compiled in 32 vs 64 bit. We've come up with what we think is a reasonable solution using macros, but was curious to know if ...
13
votes
5answers
644 views

Conditional compile-time inclusion/exclusion of code based on template argument(s)?

Consider the following class, with the inner struct Y being used as a type, eg. in templates, later on: template<int I> class X{ template<class T1> struct Y{}; template<class ...
13
votes
5answers
4k views

Conditional compilation depending on the framework version in C#

Are there any preprocessor symbols which allow something like #if CLR_AT_LEAST_3.5 // use ReaderWriterLockSlim #else // use ReaderWriterLock #endif or some other way to do this?
12
votes
3answers
191 views

Is it possible to define {$IFDEF} for more than one directive at once?

Is it possible to define more than one conditional in one {$IFDEF} directive ? I would like to have syntax like this: {$IFDEF Condition1 OR Condition2} DoSomething; {$ENDIF} {$IFDEF Condition1 AND ...
8
votes
3answers
163 views

Are conditional expressions broken within packages?

Consider the following snippet: requires designide, rtl, vcl, {$IF RTLVersion < 19.0} // E2026 Constant expression expected //{$IF CompilerVersion = 22.0} // same as above ...
8
votes
1answer
1k views

What does @cc_on mean in JavaScript?

Sometimes I see @cc_on in JavaScript. What does it mean?
7
votes
3answers
50 views

Debug Mode In VB 6?

How can I do something similar to the following C code in VB 6? #ifdef _DEBUG_ // do things #else // do other things #end if
7
votes
3answers
937 views

Is it possible to conditionally compile to .NET Framework version?

I can recall back when working with MFC you could support multiple versions of the MFC framework by checking the _MFC_VER macro. I'm doing some stuff now with .NET 4 and would like to use Tuple in a ...
6
votes
3answers
68 views

how to detect if long double is of extended precision or not at compile time

On few systems double is same as long double. How can I detect if long double is of extended precision than double at compile time and use it to conditional compile. I see there are predefined macros ...
6
votes
3answers
1k views

Java conditional compilation: how to prevent code chunks to be compiled?

My project requires Java 1.6 for compilation and running. Now I have a requirement to make it working with Java 1.5 (from the marketing side). I want to replace method body (return type and arguments ...
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 ...
6
votes
4answers
593 views

Tools to generate unit dependencies for Delphi

Are there any tools that can generate dependency diagrams for Delphi units taking into account conditional compilation directives. I'd like to emphasize that this should be unit dependency diagram, ...
6
votes
8answers
688 views

Tool for compiling automatically all ifdef / ifndef directives

My C project uses preprocessor directives to activate / deactive some features. It's not unusual to find some of the less common configurations do not compile anymore due to a change made a few days ...
6
votes
10answers
3k views

Conditional Java compilation

I'm a longtime C++ programmer, new to Java. I'm developing a Java Blackberry project in Eclipse. Question - is there a way to introduce different configuration sets within the project and then compile ...
6
votes
4answers
6k views

What is difference between Release and Debug modes in Visual Studio? [closed]

Possible Duplicate: Debug/Release difference HI I want to know what's the difference between Release and Debug modes in Visual Studio while building a project? Thanks in Advance.
5
votes
3answers
141 views

How can I write a single class to compile multiple times with different number types?

I'm trying to write classes which handle different number types. I know that C# (and .Net in general, I believe) has no INumber interface, so I cannot use something like the following: public ...
5
votes
3answers
221 views

How to compile a library on .NET Framework & .NET Compact Framework?

I'm developing a technical library class that can be used on both types of Frameworks (Compact or not). What is the best way to develop such library? Using by default the .NET features (for XP ...
5
votes
3answers
1k views

C#: VS.NET: Change name of exe depending on conditional compilation symbol

Can you tell Visual Studio to output a different name of an exe file depending on if a specific conditional compilation symbol is set?
5
votes
2answers
260 views

How can I manage multiple configurations of a single Haskell program?

What is an alternative to autotools in Haskell world? I want to be able to choose between different configurations of the same source code. For example, there are at least two implementations of MD5 ...
5
votes
6answers
3k views

Conditional compilation in Python

How to do conditional compilation in Python ? Is it using DEF ?
4
votes
2answers
138 views

Conditional compilation in C and Delphi

The next pattern is common in C code: #ifndef SOMETHING #define SOMETHING #endif The pattern is possible in Delphi code too: {$IFNDEF SOMETHING} {$DEFINE SOMETHING} {$ENDIF} but it is not common ...
4
votes
1answer
426 views

Detecting C++0x mode on Intel C++?

Does Intel C++ predefine some macro when compiling with Qstd=c++0x? Something like __GXX_EXPERIMENTAL_CXX0X__ in GCC? __cplusplus is still 199711. Any way to detect C++0x compilation?
4
votes
1answer
146 views

Conditional compiling in OCaml

suppose I have a long algorithm which I would like to be optionally verbose to debug it. So far I just added many if verbose then printf "whatever" all around the code but this forces the code to ...
4
votes
5answers
272 views

Conditional Compiling - Phasing out Part of code in C#

I'm working on a project, where I need a set of classes to be designed and used for one phase of the project. In the subsequent phase, we will not be needing the set of classes and methods. These set ...
4
votes
1answer
743 views

How to define Conditional compilation symbols in separate file (not .csproj or app.config)

We need to define a conditional compilation symbol in a class library project. This should not be checked in the source control (it doesn't apply to all developers), so it should be defined in ...
4
votes
10answers
1k views

compile different code on whether a function is available or not

Windows provides only GetTickCount up to Windows Vista and starting from that OS also GetTickCount64. How can I make a C program compile with calls to different functions? How can I make a C compiler ...
4
votes
4answers
3k views

Conditional compilation in C++ based on operating system

I would like to write a cross-platform function in C++ that contains system calls. What conditional compilation flags can I check to determine which operating system the code is being compiled for? ...
4
votes
2answers
2k views

Conditional References

Currently our .net code is not processor specific, but it depends on libraries (Oracle/ODP.Net) which are. We've found a solution where we edit the csproj file directly, and put the references in to ...
3
votes
11answers
165 views

Speed up C program without using conditional compilation

we are working on a model checking tool which executes certain search routines several billion times. We have different search routines which are currently selected using preprocessor directives. This ...
3
votes
1answer
48 views

Math interface vs cMath in C++

The interface on my build system MacOS 10.6.3 for the POSIX math library is math.h, however on my target system the name of the interface file is cmath.h. At school we use cmath and I would like to ...
3
votes
2answers
64 views

Why does Xcode4 not do any syntax highlighting in conditional compilation blocks?

Example: #ifdef FREE_VERSION tf.text = @"Free"; NSLog(@"FREE VERSION"); #else tf.text = @"Paid"; NSLog(@"PAID VERSION"); #endif The first part looks fine in Xcode. tf.text = ...
3
votes
1answer
67 views

Conditional compilation when using ARC

Is there a way to ask the compiler if ARC is turned on, and then conditionally compile based upon that value? For example, I have a protocol: @protocol ProtocolA @required -(void)protocolMethodOne ...
3
votes
1answer
55 views

Debug.Assert verses conditional compilation

Consider the code below: #if DEBUG if (Systems.Contains(system)) throw new InvalidOperationException("System already registered"); #endif Debug.Assert(!Systems.Contains(system), ...
3
votes
1answer
148 views

Building multi-SDK Android apps in Eclipse without losing compile-time checks

I am developing an Android app in Eclipse. I would like to target a wide variety of devices and SDK versions (for example, I can optionally support multi-touch). I understand the recommended ...
3
votes
1answer
72 views

Can Conditional compilation symbols be used within T4 templates

I have a T4 template that is used with the TextTemplatingFilePreprocessor to generate a class that I can then use to generate the output of the template. At the start of the T4 template I import ...
3
votes
3answers
505 views

Conditional compilation for .NET 4

I have some code that works in .NET 4 but does not work in .NET 3.5, in .NET 3.5 it requires to use interop calls to windows. I would like using a "ifdef" to use a different code path in both cases ...
3
votes
1answer
440 views

c#: Conditional DEBUG - Does it still compile into RELEASE code?

I know that if I mark code as DEBUG code it won't run in RELEASE mode, but does it still get compiled into an assembly? I just wanna make sure my assembly isn't bloated by extra methods. ...
3
votes
2answers
593 views

Is there an easy way in C# to have conditional compilation symbols based on OS version

I have a bunch of unit tests that need to be conditional compiled based on Windows OS version. This unit tests are testing TxF that is only available in Windows Vista and above. #if WIN_OS_VERSION ...
3
votes
2answers
552 views

CPP extension and multiline literals in Haskell

Is it possible to use CPP extension on Haskell code which contains multiline string literals? Are there other conditional compilation techniques for Haskell? For example, let's take this code: -- If ...
3
votes
3answers
909 views

Conditional compilation symbols not being defined

I am having trouble getting Visual Studio to behave as I would expect it. I created 2 configuration profiles. One has the symbol FOO defined and the other has the symbol BAR defined. And I have this ...
3
votes
1answer
2k views

Why is /clr incompatible with /mt and /mtd in Visual Studio?

can anybody please explain for me how and why /clr is incompatible with /mtd ? What is the alternative for this? What happens internally if I use /md or /mdd ? As far as I know we don't combinedly ...
3
votes
3answers
131 views

Can you include only certain forms during a compile

We are developing two versions of an application. Not in the sense of a lite vs standard version of the application, where one version will have limited functionality etc. We will actually be ...
2
votes
4answers
107 views

C# !Conditional attribute?

Does C# have a not Conditional (!Conditional, NotConditional, Conditional(!)) attribute? i know C# has a Conditional attribute: [Conditional("ShowDebugString")] public static void ...
2
votes
1answer
74 views

Is there a JavaScript minifier with conditional directives?

I'm looking for a JavaScript minifier which will have some kind of support for something similar to conditional compilation directives. So for example, the original JavaScript code could look like ...
2
votes
1answer
170 views

Conditional compilation does not work

Reading this post here on stackoverflow want to load a different css when compiling for release mode. Code: @{ #if (Debug) <link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" ...
2
votes
3answers
157 views

Silverlight 3 and Silverlight 4 conditional xaml

I am working on a project right now that has to separate project files. One complies in Silverlight 3 and the other in Silverlight 4. The project creates a user control that is used in a couple other ...
2
votes
6answers
110 views

Is it possible to conditionally compile / run code based on a macro OR a variable?

We have several projects in development sharing the same codebase. Certain pieces of code are only relevant to one or other of those projects. We have a couple of requirements: The first requirement ...
2
votes
3answers
119 views

gcc conditional compilation

I'm learning about conditional compilation and I think that I understand it well so far. Now, if I have the code: #ifdef UMP_TO_FILE //do something here... #endif and I run: gcc myprogram.c ...
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: ...

1 2 3