gpt4 book ai didi

c++ - 根据编译器版本有条件地包含源文件?

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:50:44 25 4
gpt4 key购买 nike

我们正在测试一个项目设置,该设置要求我们根据编译器的版本包含或排除源文件。测试项目位于 GitHub 上 CRC-Test .对于 PoC,我们正在使用 CRC-32C 开发流程,因为 Intel 和 ARM 都有它。稍后它将应用于 AES、CLMUL、SHA、AVX{2}、BMI{2}、ARMv7a NEON、ARMv8 等(MS 编译器通过内部函数支持 NEON 和 ARMv8)。

我试图有条件编译的源文件是crc-simd.cpp .它具有使用 SSE4.2 内在函数和 ARMv8 内在函数的实现(crc.cpp 提供了通用的 C++ 实现)。

我在 crc-test.vcxproj 添加了一个 VCX 项目文件.有一个 ItemGroup对于 ClCompile :

<ItemGroup>
<ClCompile Include="main.cpp" >
<PrecompiledHeader />
</ClCompile>
<ClCompile Include="crc.cpp" >
<PrecompiledHeader />
</ClCompile>
<ClCompile Include="crc-simd.cpp" >
<PrecompiledHeader />
</ClCompile>
</ItemGroup>

我需要 <ClCompile Include="crc-simd.cpp" > 的条件也就是说,“如果 cl.exe 为 15.00 或更高,则包括源文件”。在预处理器中,我会检查 _MSC_VER >= 1500 .在 MSBuild 中,我想我正在寻找类似的东西:

<ItemGroup Condition="'$(CL_VERSION)'>='15.00'" Label="SSE4.2 acceleration">
<ClCompile Include="crc-simd.cpp" >
<PrecompiledHeader />
</ClCompile>
</ItemDefinitionGroup>

我找到了 List of MSBuild built-in variables , 但我不知道是什么 $(CL_VERSION)在现实生活中。搜索“cl”并没有产生有趣的结果。我在 MSBuild vs compiler 找到了一个问题, 但它问的是一个不同的问题。

我的问题是,如何引用 cl.exe MSBuild 条件中的版本?

一个相关的问题是,有时我需要完整版。例如,VS2005 SP1 添加了 AES 支持,cl.exe版本 15.00.30729 ( _MSC_FULL_VER >= 150030729 )。我的相关问题是,如何引用 cl.exe MSBuild 条件中的完整版本?


尝试从开发人员提示中使用以下内容:

<ItemDefinitionGroup Condition="'$(CL_VERSION)'>='15.00'" Label="SSE4.2 acceleration">
<ClCompile Include="crc-simd.cpp" >
<PrecompiledHeader />
</ClCompile>
</ItemDefinitionGroup>

结果:

> cls && msbuild

Microsoft (R) Build Engine version 4.6.1087.0
[Microsoft .NET Framework, version 4.0.30319.42000]
Copyright (C) Microsoft Corporation. All rights reserved.

Build started 7/25/2017 1:23:31 PM.
Project "C:\Users\Test\CRC-Test\crc-test.vcxproj" on node 1 (default ta
rgets).
C:\Users\Test\CRC-Test\crc-test.vcxproj(127,14): error MSB4066: The att
ribute "Include" in element <ClCompile> is unrecognized.
Done Building Project "C:\Users\Test\CRC-Test\crc-test.vcxproj" (defaul
t targets) -- FAILED.

Build FAILED.

"C:\Users\Test\CRC-Test\crc-test.vcxproj" (default target) (1) ->
C:\Users\Test\CRC-Test\crc-test.vcxproj(127,14): error MSB4066: The a
ttribute "Include" in element <ClCompile> is unrecognized.

0 Warning(s)
1 Error(s)

Time Elapsed 00:00:00.11

该项目当前是为 Visual Studio 2010 设置的。如果您使用不同的版本,请更改它以适合您的口味。不需要 VCUpgrade :

<PlatformToolset>v100</PlatformToolset>
  • VS2010 → v100
  • VS2012 → v110
  • VS2013 → v120
  • VS2015 → v130
  • VS2017 → v140

这里是 Linux 上项目的本质,在 GNUmakefile 中.当编译器和平台支持硬件加速时,我们引入 crc-simd.cpp文件以便更快地实现。这就是我们想用 MSBuild 做的事情。

HAS_ARMV8 ?= $(shell uname -m | $(EGREP) -i -c 'aarch32|aarch64')
HAS_SSE42 ?= $(shell uname -m | $(EGREP) -i -c 'amd64|x86_64|i*86')
GCC43_OR_LATER := $(shell $(CXX) -v 2>&1 | $(EGREP) -i -c "gcc version (4\.[3-9]|[5-9]\.)")
GCC48_OR_LATER := $(shell $(CXX) -v 2>&1 | $(EGREP) -i -c "gcc version (4\.[8-9]|[5-9]\.)")
...

OBJECTS = main.o crc.o

ifeq ($(HAS_ARMV8)$(GCC48_OR_LATER),11)
OBJECTS += crc-simd.o
endif

ifeq ($(HAS_SSE42)$(GCC43_OR_LATER),11)
OBJECTS += crc-simd.o
endif
...

ifeq ($(HAS_ARMV8)$(GCC48_OR_LATER),11)
crc-simd.o : crc-simd.cpp
$(CXX) $(CXXFLAGS) -march=armv8-a+crc -c $<
endif

ifeq ($(HAS_SSE42)$(GCC43_OR_LATER),11)
crc-simd.o : crc-simd.cpp
$(CXX) $(CXXFLAGS) -msse4.2 -c $<
endif
...

最佳答案

可以使用与 makefile 类似的方法:运行 cl.exe,使用正则表达式获取版本,如果版本大于某个数字则包含源文件。在代码中:

<Target Name="GetClVersion">
<!-- Run cl, store output in variable -->
<Exec Command="cl.exe" ConsoleToMSBuild="True" IgnoreExitCode="True">
<Output TaskParameter="ConsoleOutput" PropertyName="ClOut" />
</Exec>
<PropertyGroup>
<!-- cl.exe version number is something like 18.00.31101 -->
<ClVersion>$([System.Text.RegularExpressions.Regex]::Match('$(ClOut)','(\d+\.\d+\.\d+)'))</ClVersion>
<!-- Turn it into an integer like 180031101 by getting rid of dots -->
<ClVersion>$([System.String]::Copy('$(ClVersion)').Replace('.', ''))</ClVersion>
</PropertyGroup>
</Target>

<!-- This will run early in the build, before compilation,
so we can modify the ClCompile ItemGroup. Needs to be done
in a target, else we cannot use results from other targets
(GetClVersion in this case) -->
<Target Name="ShowClVersion" DependsOnTargets="GetClVersion"
BeforeTargets="BuildGenerateSources">
<!-- &gt; = escaped > sign -->
<ItemGroup Condition="$(ClVersion) &gt; 180031100">
<ClCompile Include="somefile.cpp" />
</ItemGroup>
</Target>

注意:您找到的内置变量列表是针对构建系统 msbuild 的,它与编译器是分开的;这就是为什么没有 CL_VERSION 就像 makefile 默认没有 GCC_VERSION 一样。也值得尝试使用

<PlatformToolset>$(DefaultPlatformToolset)</PlatformToolset>

而不是坚持一个单一的或保留多个项目,每个 VS 版本一个。它还可以防止 VS 要求升级(因为它看到正在使用的是默认平台工具集)。我没有 VS 版本 < 2012 来测试它是否在那里工作,但它从 VS2012 及以后开始工作,所以已经有 4 个,并且还在增加。

关于c++ - 根据编译器版本有条件地包含源文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45309904/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com