Tagged Questions

12
votes
7answers
674 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 …
6
votes
1answer
141 views

What does @cc_on mean in JavaScript?

Sometimes I see @cc_on in JavaScript. What does it mean?
5
votes
5answers
653 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?
3
votes
10answers
473 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 …
3
votes
2answers
176 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 …
2
votes
1answer
75 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 …
2
votes
2answers
201 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, …
2
votes
1answer
188 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 …
2
votes
4answers
498 views

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

HI I want to know what's the difference between Release and Debug modes in Visual Studio while building a project? Thanks in Advance.
2
votes
3answers
505 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? …
2
votes
4answers
536 views

Conditional compilation in Python

How to do conditional compilation in Python ? Is it using DEF ?
1
vote
1answer
448 views

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

Hi 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 …
1
vote
2answers
180 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 …
1
vote
3answers
70 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 …
1
vote
6answers
156 views

Is possible to include files (linking) based on a component property ?

Hello there! Delphi 2007/2009 odd question here: It's possible, based on a component property defined in design-time, to include files in linking or leave them ? Example: If I leave SomeProperty …

1 2 next
15 30 50 per page