active questions tagged conditional-compilation - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T01:16:15Zhttp://stackoverflow.com/feeds/tag/conditional-compilationhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1655937/asp-net-mvc-conditional-compilation-directly-in-aspx-site-master0asp.net MVC - conditional compilation directly in aspx (site.master)?mark smith2009-10-31T23:42:29Z2009-10-31T23:55:51Z
<p>Hi there,</p>
<p>I seem to be having an issue with the conditional compilation tags directly en my site.master..</p>
<p>basically i have the following but it reports "Cannot resolve symbol DEBUG" in the compiler alhough i can run in DEBUG and RELEASE ... but the final output always prints whats in DEBUG weather i am in RELEASE or DEBUG...</p>
<p>And as mentioned the compiler doesn't complain but it has little red lines under debug with the error msg.. What am i doing wrong? Can anyone help?</p>
<pre><code><%@ Master Language="C#" Inherits="System.Web.Mvc.ViewMasterPage" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title><asp:ContentPlaceHolder ID="TitleContent" runat="server" /></title>
<% #if DEBUG %>
<link href="../../Content/CSS/test.css" rel="stylesheet" type="text/css" />
<script src="../../Content/Scripts/jquery-1.3.2.js" type="text/javascript">
</script>
<% #else %>
<link href="../../Content/CSS/StyleSheetFinal.css" rel="stylesheet" type="text/css" />
<script src="../../Content/Scripts/JavascriptFinal.js" type="text/javascript"></script>
<% #endif %>
</code></pre>
http://stackoverflow.com/questions/1012530/compile-different-code-on-whether-a-function-is-available-or-not3compile different code on whether a function is available or notCetin Sert2009-06-18T13:04:30Z2009-10-25T17:01:43Z
<p>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?</p>
<p>How can I make a C compiler check whether a function is declared in the included header files and compile different portions of code depending on whether that particular function is available or not?</p>
<pre><code>#if ??????????????????????????????
unsigned long long get_tick_count(void) { return GetTickCount64(); }
#else
unsigned long long get_tick_count(void) { return GetTickCount(); }
#endif
</code></pre>
<p>looking for a working sample file not just hints ^__^"</p>
<p><strong>Edit:</strong> I tried the following using gcc 3.4.5 from MinGW on a (64-bit) Windows 7 RC but it didn't help o__O! If this is a MinGW problem, how can I work around this issue?</p>
<pre><code>#include <windows.h>
#if (WINVER >= 0x0600)
unsigned long long get_tick_count(void) { return 600/*GetTickCount64()*/; }
#else
unsigned long long get_tick_count(void) { return 0/*GetTickCount()*/; }
#endif
</code></pre>
http://stackoverflow.com/questions/1505582/determining-32-vs-64-bit-in-c12Determining 32 vs 64 bit in C++Joe Corkery2009-10-01T18:17:13Z2009-10-22T11:48:21Z
<p>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 people could think of cases where this might fail or if there is a better way to do this. Please note we are trying to do this in a cross-platform, multiple compiler environment.</p>
<pre><code>#if ((ULONG_MAX) == (UINT_MAX))
#define IS32BIT
#else
#define IS64BIT
#endif
#ifdef IS64BIT
DoMy64BitOperation()
#else
DoMy32BitOperation()
#endif
</code></pre>
<p>Thanks.</p>
http://stackoverflow.com/questions/1592432/net-conditional-compiler-symbols-and-unit-test-libraries0.NET Conditional Compiler Symbols and Unit Test LibrariesZac2009-10-20T04:26:08Z2009-10-20T07:30:39Z
<p>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 and the objects aren't setup. The logging code is executed via a method attribute we have setup using PostSharp (which get called before and after the method body executes). The attribute should not be called.</p>
<p>Here's where PostSharp helps us out: it looks for a Conditional Compiler Directive (SKIPPOSTSHARP) which tells it not to execute. In other words, if we define the directive while the unit tests are being executed then we are able to test the desired code independently of the logging aspect - successfully avoiding unnecessary dependencies and complicated mocking code along the way. </p>
<p>This is Great! Except for one catch... A Conditional Compiler Directive defined for our test project is not going to be defined for the project that is being tested - meaning that our code under test still uses the attribute and our tests all fail. </p>
<p>Is it possible to have a compiler directive defined across a whole solution only when running unit tests? Even if we're not applying it to the whole solution, can a directive be applied to a specific project only when we're running unit tests (this would work equally as well)?</p>
<p>I'd also be interested in seeing opinions about this approach (we're trying to achieve seperation and scalability via the AOP code but there does appear to be a few extra hoops for us to jump through as we progress).</p>
<p>NOTE: I'm not talking integration testing here just unit testing. We only want to test the specific unit and we don't care whether the logging code works or not - that gets tested by other unit tests (which work fine).</p>
http://stackoverflow.com/questions/963635/how-to-resolve-linking-error0How to resolve linking error??Cute2009-06-08T06:25:23Z2009-10-18T09:38:29Z
<p>Hi </p>
<p>I hav a project.it shows error only with linking only.</p>
<p>it displays __getch alresdy defined evnthough i hav ignored specific library MSVCR80D.dll it shows error.</p>
<p>Plz Help me in this regard.....</p>
<p>after using /verbose:</p>
<p>Processed /DEFAULTLIB:msvcprtd
Processed /DEFAULTLIB:MSVCRTD
Processed /DEFAULTLIB:OLDNAMES
Processed /DEFAULTLIB:MSVCMRTD
Processed /DEFAULTLIB:MSCOREE
Processed /DEFAULTLIB:uuid.lib
Processed /DEFAULTLIB:atlsd.lib
Processed /DEFAULTLIB:kernel32.lib
Processed /DEFAULTLIB:user32.lib
Processed /DEFAULTLIB:advapi32.lib
Processed /DEFAULTLIB:ole32.lib
Processed /DEFAULTLIB:shell32.lib
Processed /DEFAULTLIB:oleaut32.lib
Processed /DEFAULTLIB:shlwapi.lib
Processed /DEFAULTLIB:ws2_32.lib
Referenced in config.lib(configwrapper.obj)
Loaded msvcprtd.lib(MSVCP80D.dll)
msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "public: char __thiscall std::basic_ios >::fill(void)const " (?fill@?$basic_ios@DU?$char_traits@D@std@@@std@@QBEDXZ) already defined in ACEsd.lib(Log_Record.obj)
Found "__declspec(dllimport) public: int __thiscall std::ios_base::flags(void)const " (__imp_?flags@ios_base@std@@QBEHXZ)
Referenced in config.lib(serializetransport_settings.obj)
Referenced in config.lib(serializeretentionsettings.obj)
Referenced in s2libs.lib(operatingsystem.obj)
Referenced in s2libs.lib(errormajor.obj)</p>
<pre><code> Loaded msvcprtd.lib(MSVCP80D.dll)
</code></pre>
<p>msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "public: int __thiscall std::ios_base::flags(void)const " (?flags@ios_base@std@@QBEHXZ) already defined in ACEsd.lib(Log_Record.obj)
Found "__declspec(dllimport) public: int __thiscall std::ios_base::width(void)const " (__imp_?width@ios_base@std@@QBEHXZ)
Referenced in config.lib(serializetransport_settings.obj)
Referenced in config.lib(serializeretentionsettings.obj)
Referenced in s2libs.lib(operatingsystem.obj)
Referenced in s2libs.lib(errormajor.obj)
Referenced in config.lib(serializereplicationpairsettings.obj)
Referenced in config.lib(serializecdpsnapshotrequest.obj)
Referenced in config.lib(serializeatconfigmanagersettings.obj)
Referenced in config.lib(serializeretentioninformation.obj)
Referenced in config.lib(marshal.obj)
Referenced in config.lib(serializevolumegroupsettings.obj)
Referenced in config.lib(unmarshal.obj)</p>
http://stackoverflow.com/questions/1519437/delphi-scope-of-custom-definitions0Delphi - Scope of custom definitionsWizzard2009-10-05T11:06:29Z2009-10-05T19:40:36Z
<p>Good Morning,</p>
<p>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.</p>
<p>In my DPR for the project I have;</p>
<pre><code>program Project1;
{$Define MYDEF}
uses
Forms,
...
</code></pre>
<p>and in my Form1 file I have</p>
<pre><code>procedure TForm1.FormCreate(Sender: TObject);
begin
{$IfDef MYDEF}
ShowMessage('boo');
{$EndIf}
end;
</code></pre>
<p>however I don't get to see boo!
Are definitions limited to a certain scope?</p>
http://stackoverflow.com/questions/1485316/xcode-preprocessor-macro-for-configuration0XCode Preprocessor Macro for Configuration?JP2009-09-28T03:42:23Z2009-09-28T03:49:21Z
<p>I want my XCode Objective-C project to be able to detect which configuration it is being built with. How can I achieve this?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1473636/how-do-i-white-label-my-asp-net-mvc-application0How do I "White Label" my ASP.Net MVC Application?Chris Arnold2009-09-24T19:15:35Z2009-09-24T19:22:24Z
<p>I have a "<a href="http://en.wikipedia.org/wiki/White-label%5Fproduct" rel="nofollow">white labelled</a>" 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 code / business logic. I want my TFS Server to build all flavours of my application automatically. What are my options for doing this? e.g. should I be using Themes? What about #if conditional compilation flags.</p>
<p><em>P.S. The question is not about how to setup the Build Server - I've done that already.</em></p>
http://stackoverflow.com/questions/1449925/is-it-possible-to-conditionally-compile-to-net-framework-version2Is it possible to conditionally compile to .NET Framework version?dkackman2009-09-20T00:30:04Z2009-09-20T00:34:47Z
<p>I can recall back when working with MFC you could support multiple versions of the MFC framework by checking the <code>_MFC_VER</code> macro.</p>
<p>I'm doing some stuff now with .NET 4 and would like to use Tuple in a couple of spots but still keep everything else 3.5 compatible. </p>
<p>I'm looking to do something like:</p>
<pre><code>#if DOTNET4
public Tuple<TSource, TResult> SomeMethod<TSource, TResult>(){...}
#else
public KeyValuePair<TSource, TResult> SomeMethod<TSource, TResult>(){...}
#endif
</code></pre>
http://stackoverflow.com/questions/1277309/delphi-2007-and-ifdef-directive-fails-to-see-our-conditional2Delphi 2007 and {$IFDEF...} directive, fails to see our conditionalLasse V. Karlsen2009-08-14T11:10:36Z2009-09-13T17:47:24Z
<p>We have the following in our codebase, in a component file:</p>
<pre><code>{$IFDEF ADO}
FDatabase : TADODatabase;
{$ELSE}
FDatabase : TODBCDatabase;
{$ENDIF}
</code></pre>
<p>The reason is that for various legacy applications, one or the other type of database connection and set of classes is to be used.</p>
<p>However, while configuring a new machine, it seems that our conditionals aren't taken into account. In the project settings, it says "ADO;DEBUG", and yet it compiles the above code with the odbc type instead.</p>
<p>The odd thing is that it isn't consistent. Two different units built as part of the same project uses separate settings. In other words, in one place our conditional is visible, in another it is not.</p>
<p>The file that compiles wrong does not have any {$UNDEF or similar directives, nor does it include any files.</p>
<p>What am I missing here?</p>
<p><strong>Solved (ugh)</strong>: Right, Delphi is just being boneheaded, or whatnot.</p>
<p>We found these:</p>
<ul>
<li><a href="http://support.codegear.com/print/37251" rel="nofollow">I get “F1026 File not found”, OR some compiler options are not passed to the compiler from the IDE.</a></li>
<li><a href="http://social.msdn.microsoft.com/Forums/en-US/msbuild/thread/1d229d75-aa89-42bf-809b-ef98f42072bb" rel="nofollow">Configuration='Debug' Platform='BNB'</a></li>
</ul>
<p>Which both mention the "Platform=BNB" setting. By enabling the diagnostic output, we see that exact value. So we try to override it per the articles, no luck, still BNB. Then we go to the project settings, turns out it can be overriden there as well, so we do that too, still no luck.</p>
<p>Turns out the Delphi installer, or whatnot, has added a "Platform=BNB" environment variable on operating system level, removing that, restarting Delphi, and all is well.</p>
<p>Well, as well as can be expected. We still have to use Delphi though.</p>
http://stackoverflow.com/questions/1341460/what-does-ccon-mean-in-javascript6What does @cc_on mean in JavaScript?Paul D. Waite2009-08-27T14:23:36Z2009-08-28T08:04:06Z
<p>Sometimes I see <code>@cc_on</code> in JavaScript. What does it mean?</p>
http://stackoverflow.com/questions/1297306/project-level-conditional-compilation-constant0project-level conditional compilation constantunknown (google)2009-08-19T00:38:56Z2009-08-19T22:29:07Z
<p>I am getting a project-level conditional compilation constant error while trying to build my vb.net project. It reads:</p>
<pre><code>project-level conditional compilation constant 'VB_VER=9.0,TARGET="exe",CONFIG="Debug",_MyType="Console",PLATFORM="AnyCPU",DEBUG;^^ ^^ TRACE' not valid: Character is not valid.
</code></pre>
<p>I recently upgraded it to the latest version (from 2.0), and I have a feeling that this has something to do with it.</p>
<p>Any ideas on what this means? I am clueless...</p>
<p>Here is my project file (by request):</p>
<pre><code><Project DefaultTargets="Build" ToolsVersion="3.5" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectType>local</ProjectType>
<ProjectVersion>7.10.3077</ProjectVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{5810CBEF-671E-4845-BBE3-BC3470C3EE18}</ProjectGuid>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<AssemblyName>svchost</AssemblyName>
<DefaultClientScript>JScript</DefaultClientScript>
<DefaultHTMLPageLayout>Grid</DefaultHTMLPageLayout>
<DefaultTargetSchema>IE50</DefaultTargetSchema>
<DelaySign>false</DelaySign>
<OutputType>Exe</OutputType>
<FileUpgradeFlags>
</FileUpgradeFlags>
<MyType>Console</MyType>
<UpgradeBackupLocation>
</UpgradeBackupLocation>
<OldToolsVersion>0.0</OldToolsVersion>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<IsWebBootstrapper>false</IsWebBootstrapper>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled>
<UpdateMode>Foreground</UpdateMode>
<UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
<StartupObject>Sub Main</StartupObject>
<ApplicationManifest>My Project\app.manifest</ApplicationManifest>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<OutputPath>bin\Debug\</OutputPath>
<DocumentationFile>svchost.xml</DocumentationFile>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugSymbols>true</DebugSymbols>
<NoStdLib>false</NoStdLib>
<Optimize>false</Optimize>
<WarningLevel>4</WarningLevel>
<NoWarn>42016,42017,42018,42019,42032</NoWarn>
<DebugType>full</DebugType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<OutputPath>bin\Release\</OutputPath>
<DocumentationFile>svchost.xml</DocumentationFile>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DefineConstants>TRACE</DefineConstants>
<DebugSymbols>false</DebugSymbols>
<NoStdLib>false</NoStdLib>
<Optimize>true</Optimize>
<WarningLevel>4</WarningLevel>
<NoWarn>42016,42017,42018,42019,42032</NoWarn>
<DebugType>none</DebugType>
</PropertyGroup>
<ItemGroup>
<!-- Removed Files Here -->
</ItemGroup>
<ItemGroup>
<!-- Removed Files Here -->
</ItemGroup>
<ItemGroup>
<!-- Removed Files Here -->
</ItemGroup>
<ItemGroup>
<!-- Removed Files Here -->
</ItemGroup>
<ItemGroup>
<!-- Removed Files Here -->
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.VisualBasic.targets" />
<PropertyGroup>
<PreBuildEvent>
</PreBuildEvent>
<PostBuildEvent>
</PostBuildEvent>
</PropertyGroup>
</Project>
</code></pre>
http://stackoverflow.com/questions/1278703/delphi-check-state-of-a-switch-directive-in-the-function-callers-environment0(Delphi) Check state of a switch directive in the function caller's environmentkaeff2009-08-14T16:00:42Z2009-08-17T07:30:56Z
<p>I know that I can check the current state of Delphi's switch directives using this construct:</p>
<pre><code>{$IFOPT R+}
Writeln('Compiled with range-checking');
{$ENDIF}
</code></pre>
<p>Since I'm lacking of in-depth sources on how the Delphi backend compiler works, I'm not sure wether there is a way of changing the behaviour of a function depending on the state of a switch directive at the code line calling it. It'll look something like this:</p>
<pre><code>procedure P1;
begin
{$I+}
P3;
{$I-}
end;
// ** state of I unknown
procedure P2;
begin
{$I-}
P3;
{$I+}
end;
// ** state of I unknown
procedure P3;
begin
// Something like {$IFOPT I+}, but at the state P3 is called
DoThis;
{$ELSE}
DoThat
{$ENDIF}
end;
</code></pre>
<p>I'm writing adapters for legacy code which I'd urgently like to be untouched.
P3 doesn't need to use directives, but I figured this to be the way to go.</p>
http://stackoverflow.com/questions/1259502/vs2008-how-do-i-make-symbols-defined-in-stdafx-h-visible-to-the-resource-compile0VS2008: How do I make symbols defined in stdafx.h visible to the resource compiler?Agnel Kurian2009-08-11T10:18:12Z2009-08-16T18:14:16Z
<p>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 defined in <code>stdafx.h</code>. I need these symbols to be visible to the resource compiler as well. How do I make this happen?</p>
http://stackoverflow.com/questions/1201203/using-msbuild-conditions-on-comreferences0Using MSBuild Conditions on COMReferencesemddudley2009-07-29T15:42:56Z2009-08-06T01:49:45Z
<p>How can I specify a <a href="http://msdn.microsoft.com/en-us/library/7szfhaft.aspx" rel="nofollow">Condition</a> for a COMReference in my *.csproj file? The following does not appear to work:</p>
<pre><code><COMReference Include="SomeComLib" Condition=" '$(Configuration)' == 'Debug' ">
...
</COMReference>
</code></pre>
<p>I have some COM references in a C# project in Visual Studio 2008. I would like them to automatically use non-isolation mode when I am in Debug, but automatically switch to Isolation mode when I make a Release build. I thought I could achieve this by specifying two different COMReferences in my *.csproj file, which are selected based on the Condition.</p>
http://stackoverflow.com/questions/1221343/how-to-define-conditional-compilation-symbols-in-separate-file-not-csproj-or-ap2How to define Conditional compilation symbols in separate file (not .csproj or app.config)Edo2009-08-03T09:10:20Z2009-08-03T09:36:12Z
<p>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 someplace other than the .csproj or the app.config file. How can this be achieved?</p>
http://stackoverflow.com/questions/849046/can-you-include-only-certain-forms-during-a-compile1Can you include only certain forms during a compileJason Down2009-05-11T17:02:54Z2009-06-17T03:24:18Z
<p>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 displaying different types of information in the application, depending on the version (that's the best way I can describe it without going into too many details).</p>
<p>To differentiate the two versions of the application we've considered using the conditional attribute and the #if directive (if there are any other options or better way than these two, I'm open for suggestions). After some research and debate, we've decided to go with the #if approach, since this will not include the unnecessary code during the compile process (whereas the conditional attribute will just remove the calls to the methods that do not meet the condition, but still include the methods... if I'm not mistaken). I realize the two are not mutually exclusive, so we could always mix and match if need be.</p>
<p>Anyway... What we're now wondering, is if there is a way to <strong>only</strong> include certain windows forms during a compile, based on which version of the application we are compiling. We have split out all of the logic, so the forms are really just forms, with very little code inside them (mostly just calls to form manager classes that handle all of the business logic). The form manager classes will contain some of the #if statements inside of them, so the code can be reused in both versions of the application, whenever possible (instead of making two classes and putting a conditional attribute on the classes... though maybe this is something we should consider).</p>
<p>Is anyone aware of a good way to do this?</p>
<p>TIA</p>
<p>UPDATE:</p>
<p>Just an FYI of what we actually decided to do. We put the different versions of the forms into separate namespaces and then only had to use an #if statement around the namespace using statement at the top of the class that manages all of the forms. Worked out pretty slick and was very litte work.</p>
http://stackoverflow.com/questions/394921/is-it-possible-in-net-to-call-some-code-only-from-debug-builds-of-client-assembl0Is it possible in .Net to call some code only from debug builds of client assemblies?Alexey Romanov2008-12-27T11:36:31Z2009-06-16T07:12:49Z
<p>I am writing a (very small) framework for checking pre- and postconditions of methods. Entry points are (they could be easily be methods; that doesn't matter):</p>
<pre><code>public static class Ensures {
public static Validation That {
get { ... }
}
}
public static class Requires {
public static Validation That {
get { ... }
}
}
</code></pre>
<p>Obviously, checking the postconditions may be expensive, and isn't actually necessary, when the method isn't buggy. So I want a method which works like this:</p>
<pre><code>public static class Ensures {
[ConditionalCallingCode("DEBUG")]
public static Validation ThatDuringDebug {
get { ... }
}
}
</code></pre>
<p>where <code>ConditionalCallingCodeAttribute</code> means that this method should only run when the calling code is compiled with the DEBUG symbol defined. Is this possible?</p>
<p>I want client code to look like this:</p>
<pre><code>public class Foo {
public void Bar() {
... // do some work
Ensures.That // do these checks always
.IsNotNull(result)
.IsInRange(result, 0, 100);
Ensures.WhileDebuggingThat // only do these checks in debug mode
.IsPositive(ExpensiveCalculation(result));
return result;
}
}
</code></pre>
<p>Of course, I can simply not provide WhileDebuggingThat. Then the client code would look like this:</p>
<pre><code>public class Foo {
public void Bar() {
... // do some work
Ensures.That // do these checks always
.IsNotNull(result)
.IsInRange(result, 0, 100);
#ifdef DEBUG
Ensures.That // only do these checks in debug mode
.IsPositive(ExpensiveCalculation(result));
#endif
return result;
}
}
</code></pre>
<p>This is the fallback plan if nothing else works out, but it breaks DRY really badly.</p>
<p>As I understand it, marking <code>WhileDebuggingThat</code> with <code>[Conditional("DEBUG")]</code> will emit (or not) this method depending on whether DEBUG is defined during the compilation of the library, <em>not</em> of the assemblies which reference this library. So I <em>could</em> do this and then write documentation telling the library users to link debug builds of their code with the debug build of the library, and release builds with release builds. This doesn't strike me as the best solution.</p>
<p>Finally, I could tell the library users to define this class inside their projects:</p>
<pre><code>using ValidationLibrary;
public static class EnsuresWhileDebugging {
[Conditional("DEBUG")]
public static Validation That() {
return Ensures.That;
}
}
</code></pre>
<p>This should work as well, as far as I see, but still requires breaking the DRY principle, if only slightly.</p>
http://stackoverflow.com/questions/944481/how-to-use-nodefaultlibs-option-in-compilation0How to use /NODEFAULTLIBS option in compilation ?Cute2009-06-03T12:35:19Z2009-06-04T08:54:30Z
<p>Hi </p>
<p>i hav solution explorer contains 2 proj.for one project i enable /clr with /mdd. for parent </p>
<p>project i hav /mtd and no clr support.when i compiling this i am getting two linker errors </p>
<p>including the below one</p>
<p><strong>Link warning link 4098:Default lib can conflict with other lib use /NODEFAULTLIBS library</strong></p>
<p>so my question how to use /NODEFAULTLIBS in compilation</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/938539/why-is-clr-incompatible-with-mt-and-mtd-in-visual-studio1Why is /clr incompatible with /mt and /mtd in Visual Studio?Cute2009-06-02T08:42:29Z2009-06-02T11:09:24Z
<p>Hi</p>
<p>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 ?</p>
<p>As far as I know we don't combinedly use /clr and /mtd. Can someone explain if there is a way to do this? And please explain me how and why /clr is incompatible with /mt and /mtd in Visual Studio?</p>
http://stackoverflow.com/questions/933739/what-is-difference-between-release-and-debug-modes-in-visual-studio2What is difference between Release and Debug modes in Visual Studio?Cute2009-06-01T06:30:30Z2009-06-02T09:33:10Z
<p>HI</p>
<p>I want to know what's the difference between Release and Debug modes in Visual Studio while building a project?</p>
<p>Thanks in Advance.</p>
http://stackoverflow.com/questions/904745/conditional-compilation-in-c-based-on-operating-system1Conditional compilation in C++ based on operating systememddudley2009-05-24T21:56:49Z2009-05-25T00:07:28Z
<p>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? I'm interested mostly in Windows and Linux, using Visual Studio and GCC.</p>
<p>I think it should look something like this:</p>
<pre><code>void SomeClass::SomeFunction()
{
// Other code
#ifdef LINUX
LinuxSystemCall();
#endif
#ifdef WINDOWS
WindowsSystemCall();
#endif
// Other code
}
</code></pre>
http://stackoverflow.com/questions/855118/conditional-references1Conditional ReferencesJustin2009-05-12T22:06:46Z2009-05-19T20:53:27Z
<p>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 item groups with a Condition clause based on our selected build configuration. We have 32 bit debug/release and 64bit debug/release, and the correct assemblies are references when you build that config.</p>
<p>This works more or less at build time, but it causes all kinds of wackiness in Visual Studio (2008). The end result is that the same assembly shows up four times under references, and three have the yellow exclamation mark. It also generates some 76 warnings that I can't get rid of. We try to aim for 0 warnings because we want to know when new ones show up so this is a bit of a problem. </p>
<p>Is anybody aware of a solution to conditional references that allow it to look like a single reference (which it really is) and doesn't fill up my warnings at build time?</p>
http://stackoverflow.com/questions/747289/how-can-i-manage-multiple-configurations-of-a-single-haskell-program3How can I manage multiple configurations of a single Haskell program?jetxee2009-04-14T12:25:04Z2009-04-15T02:08:56Z
<p>What is an alternative to autotools in Haskell world? I want to be able to choose between different configurations of the same source code.</p>
<p>For example, there are at least two implementations of MD5 in Haskell: <code>Data.Digest.OpenSSL.MD5</code> and <code>Data.Digest.Pure.MD5</code>. I'd like to write code in such a way that it can figure out which library is already installed, and didn't require to install the other.</p>
<p>In C I can use Autotools/Scons/CMake + <code>cpp</code>. In Python I can catch <code>ImportError</code>. Which tools should I use in Haskell?</p>
http://stackoverflow.com/questions/637900/how-to-conditionally-compile-vc6-resources0How to conditionally compile VC6 resourcesmxp2009-03-12T09:43:34Z2009-03-12T11:14:20Z
<p>Hi,</p>
<p>depending on a compile switch (values are <code>COMPILE_A</code> or <code>COMPILE_B</code>), which is set in the form of an envorinment variable, I want to compile my application with different settings, like application name and splash screen.</p>
<p>I got this far:</p>
<ol>
<li><p>In "Project / Settings / C/C++ / Preprocessor Definitions" I added <code>$(COMPILESWITCH)</code> (results in command line option <code>/D "$(COMPILESWITCH)"</code>).</p></li>
<li><p>In stdafx.h I can use the following code, which means I correctly defined the preprocessor definition via the command line parameter:</p></li>
</ol>
<pre><code>
#if defined COMPILE_A
# define IDB_SPLASH IDB_SPLASH_A
# elif defined COMPILE_B
# define IDB_SPLASH IDB_SPLASH_B
# else
# error Unknown or undefined target compile switch; cannot compile!
# endif
</code></pre>
<p>But I've noticed the "Condition" property under "ResourceView / [right-click] / Properties"...
The help text says this:</p>
<blockquote>
Condition
<p>Determines the inclusion of
the resource. For example, if the
condition is _DEBUG, this resource
would be included only in debug
builds.</p>
</blockquote>
<p>This looks like the elegant way of doing it, right?</p>
<p>Specifiying <code>_DEBUG</code> as condition works. So as <code>_DEBUG</code> is specified via <code>/D _DEBUG</code> my <code>$(COMPILESWITCH)</code> should also work, right?<br />
For some reason it doesn't; why?</p>
<p>Or is there even another, better way to achieve what I want?</p>
http://stackoverflow.com/questions/560040/conditional-compilation-in-python2Conditional compilation in Pythonrejinacm2009-02-18T06:26:54Z2009-02-18T22:43:46Z
<p>How to do conditional compilation in Python ?</p>
<p>Is it using DEF ?</p>
http://stackoverflow.com/questions/440364/is-possible-to-include-files-linking-based-on-a-component-property1Is possible to include files (linking) based on a component property ?gto2009-01-13T19:17:27Z2009-01-16T16:15:51Z
<p>Hello there!</p>
<p>Delphi 2007/2009 odd question here:</p>
<p>It's possible, based on a component property defined in design-time, to include files in linking or leave them ?</p>
<p>Example: If I leave SomeProperty true, when compiling, the unit SomeUnit will be included into my project. Otherwise it will not be included.</p>
<p>My second approach to this problem is to deploy a second component, which when dropped in the form (or not) will include the unit in uses clause. But if it can be done with a property, that'll be better.</p>
<p>I want to avoid conditional compilation via IFDEF because that forces the component to be built every time the projects are built. Or not?</p>
<p>I am trying to achieve an easy way of including some units in project, and then those units will provide support for specific databases. Having these into an option, at the connection component, will be ideally easy: Check support and that's done. Uncheck, and get some less KBs in your compiled APP.</p>
<p>Thank you in advance!</p>
http://stackoverflow.com/questions/408908/conditional-compilation-depending-on-the-framework-version-in-c5Conditional compilation depending on the framework version in C#Alexey Romanov2009-01-03T11:03:34Z2009-01-04T17:04:53Z
<p>Are there any preprocessor symbols which allow something like</p>
<pre><code>#if CLR_AT_LEAST_3.5
// use ReaderWriterLockSlim
#else
// use ReaderWriterLock
#endif
</code></pre>
<p>or some other way to do this?</p>
http://stackoverflow.com/questions/97114/is-conditional-compilation-a-valid-mock-stub-strategy-for-unit-testing1Is conditional compilation a valid mock/stub strategy for unit testing?Aaron2008-09-18T21:21:55Z2008-09-19T14:48:57Z
<p>In a recent question on stubbing, many answers suggested C# interfaces or delegates for implementing stubs, but <a href="http://stackoverflow.com/questions/43711/whats-a-good-way-to-overwrite-datetimenow-during-testing#43718">one answer</a> suggested using conditional compilation, retaining static binding in the production code. This answer was modded -2 at the time of reading, so at least 2 people really thought this was a <em>wrong</em> answer. Perhaps misuse of DEBUG was the reason, or perhaps use of fixed value instead of more extensive validation. But I can't help wondering:</p>
<p>Is the use of conditional compilation an inappropriate technique for implementing unit test stubs? Sometimes? Always?</p>
<p>Thanks.</p>
<p><strong>Edit-add:</strong> I'd like to add an example as a though experiment:</p>
<pre><code>class Foo {
public Foo() { .. }
private DateTime Now {
get {
#if UNITTEST_Foo
return Stub_DateTime.Now;
#else
return DateTime.Now;
#endif
}
}
// .. rest of Foo members
}
</code></pre>
<p>comparing to</p>
<pre><code>interface IDateTimeStrategy {
DateTime Now { get; }
}
class ProductionDateTimeStrategy : IDateTimeStrategy {
public DateTime Now { get { return DateTime.Now; } }
}
class Foo {
public Foo() : Foo(new ProductionDateTimeStrategy()) {}
public Foo(IDateTimeStrategy s) { datetimeStrategy = s; .. }
private IDateTime_Strategy datetimeStrategy;
private DateTime Now { get { return datetimeStrategy.Now; } }
}
</code></pre>
<p>Which allows the outgoing dependency on "DateTime.Now" to be stubbed through a C# interface. However, we've now added a dynamic dispatch call where static would suffice, the object is larger even in the production version, and we've added a new failure path for Foo's constructor (allocation can fail). </p>
<p>Am I worrying about nothing here? Thanks for the feedback so far!</p>