0
votes
1answer
57 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 …
3
votes
10answers
464 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 …
12
votes
7answers
659 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
61 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
127 views
How to resolve linking error??
Hi
I hav a project.it shows error only with linking only.
it displays __getch alresdy defined evnthough i hav ignored specific library MSVCR80D.dll it shows error.
Plz Help me in this regard.....
…
0
votes
3answers
106 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;
…
0
votes
1answer
163 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
2answers
68 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 …
2
votes
1answer
70 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
195 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
138 views
What does @cc_on mean in JavaScript?
Sometimes I see @cc_on in JavaScript. What does it mean?
0
votes
1answer
118 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
3answers
108 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 …
0
votes
1answer
42 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 …
0
votes
1answer
97 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' ">
…
