12
votes
7answers
669 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 …
0
votes
1answer
64 views
asp.net MVC - conditional compilation directly in aspx (site.master)?
Hi there,
I seem to be having an issue with the conditional compilation tags directly en my site.master..
basically i have the following but it reports "Cannot resolve symbol DEBUG" in the compiler …
0
votes
1answer
67 views
.NET Conditional Compiler Symbols and Unit Test Libraries
My team has a set of unit test libraries that run against our application code - unfortunately they are throwing (unexpected) exceptions. The reason for this is that our logging code is being called …
0
votes
1answer
171 views
XCode Preprocessor Macro for Configuration?
I want my XCode Objective-C project to be able to detect which configuration it is being built with. How can I achieve this?
Thanks in advance.
0
votes
3answers
108 views
Delphi - Scope of custom definitions
Good Morning,
I have a unit which I want to use in two different programs, to tell the difference I wanted to Define a symbol and then check that in the unit.
In my DPR for the project I have;
…
3
votes
10answers
471 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 …
2
votes
1answer
73 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
200 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, …
6
votes
1answer
141 views
What does @cc_on mean in JavaScript?
Sometimes I see @cc_on in JavaScript. What does it mean?
0
votes
2answers
71 views
How do I “White Label” my ASP.Net MVC Application?
I have a "white labelled" application that is installed onto multiple customers' servers. On any given installation the differences will include content, style sheets and graphics but also some actual …
0
votes
3answers
111 views
(Delphi) Check state of a switch directive in the function caller’s environment
I know that I can check the current state of Delphi's switch directives using this construct:
{$IFOPT R+}
Writeln('Compiled with range-checking');
{$ENDIF}
Since I'm lacking of in-depth …
2
votes
1answer
184 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 …
0
votes
1answer
100 views
Using MSBuild Conditions on COMReferences
How can I specify a Condition for a COMReference in my *.csproj file? The following does not appear to work:
<COMReference Include="SomeComLib" Condition=" '$(Configuration)' == 'Debug' ">
…
0
votes
1answer
126 views
project-level conditional compilation constant
I am getting a project-level conditional compilation constant error while trying to build my vb.net project. It reads:
project-level conditional compilation constant …
0
votes
1answer
43 views
VS2008: How do I make symbols defined in stdafx.h visible to the resource compiler?
I am working on a VC++ project under VS2008. My resource files contain some pre-processor directives for conditional compilation. Some of the symbols controlling the conditional compilation are …
