How to use #if to decide which platform is being compiled for in C#

南笙酒味 提交于 2019-12-04 11:26:10

问题


In C++ there are predefined macros:

#if defined(_M_X64) || defined(__amd64__)
    // Building for 64bit target
    const unsigned long MaxGulpSize = 1048576 * 128;// megabyte = 1048576;
    const unsigned long MaxRecsCopy = 1048576 * 16;
#else
    const unsigned long MaxGulpSize = 1048576 * 8;// megabyte = 1048576;
    const unsigned long MaxRecsCopy = 1048576;
#endif

Which allows me to set constants to control the amount of memory that will be used.

Of course I can define a preprocessor variable verbatim:

#define Is64bit 1

using System;
using System.Collections.Generic;

-later-

#if Is64bit
    // Building for 64bit target
    const long MaxGulpSize = 1048576 * 128;// megabyte = 1048576;
    const long MaxRecsCopy = 1048576 * 16;
#else
    const long MaxGulpSize = 1048576 * 8;// megabyte = 1048576;
    const long MaxRecsCopy = 1048576;
#endif

I cannot find a way to detect the platform based on the values set in the configuration manager which would allow for command line building:

set de=C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\devenv.exe
set sol=E:\Some\Path\to\my.sln
"%de%" %sol% /build "Release|x86"
"%de%" %sol% /build "Release|x64"

Is there a way to detect this or will I have to build, change platform and build again?


回答1:


You can add any constants you want to the .csproj file. These can be put into conditional property groups like the one below.

 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
    <DefineConstants>TRACE;X64</DefineConstants>
    ...
 </PropertyGroup>

For my Release x64 build, I have defined a X64 constant that I can use like this:

#if X64

#endif



回答2:


Make sure your design considers whether this needs to be known at compile time or at runtime. If it is compile time, then yes, you will probably need to define a constant. This can be passed on the command line, or if using Visual Studio or MSBUILD, through a configuration. Change the configuration and build again.

If it is runtime, search through the answers to questions such as How to know a process is 32-bit or 64-bit programmatically... and friends.

However, it is also possible that this distinction may not matter, depending on the needs of your application. .NET manages its own memory, and nothing is stopping your built-for-x86 assembly from running on a 64-bit machine. If you are interopping with unmanaged code, are there any externals from your library that can tell you what sizes you should be using, instead of assuming?




回答3:


You can also just define a symbol (e.g. _x64) in the project properties for the x64 platform. Open the properties dialogue of your project, select the x64 platform, on the Build page, just put "_x64" into the "Conditional compilation symbols" box.
Make sure to do this for both debug and release configuration.



来源:https://stackoverflow.com/questions/28183445/how-to-use-if-to-decide-which-platform-is-being-compiled-for-in-c-sharp

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!