问题描述
在 VS2019 中使用 WDK 时,我收到此构建错误:
When using WDK in VS2019, I get this build error:
错误 MSB8040:此项目需要 Spectre-mitigated 库
VS2019 设置中有很多包含幽灵"的项目.
There are a lot of items in VS2019 setup that contains "spectre".
对于您打算为其构建驱动程序的每个架构,通过单个组件安装 Spectre 缓解库 -> 编译器、构建工具和运行时 -> MSVC v142 - VS 2019 C+ x64/x86 Spectre 缓解库 (v14.21).
我认为您需要安装以下组件:MSVC V142 - VS2019 C++ x64/x86 Spectre-mitigated libs (v14.xx) 最新的 C++ ATLv142 构建工具与 Spectre-mitigations (x86 & x64) C++ MFC for具有 Spectre-mitigations (x86 & x64) 的最新 v142 构建工具
要安装哪个?
推荐答案
VS2019 工具集WindowsKernelModeDriver10.0"(构建驱动项目需要选择)似乎使用了 VS2019 支持的最高版本的 C++ 工具集.
VS2019 toolset "WindowsKernelModeDriver10.0" (which you need to select to build driver projects) seems to use the highest version of C++ toolset that VS2019 supports.
目前最高版本是14.23所以只需要安装
For now the highest version is 14.23 so only need to install
MSVC v142 - VS 2019 C++ x64/x86 Spectre-mitigated libs (v14.23)
这篇关于要在 VS2019 中使用 WDK,应该安装哪个 Spectre-mitigated 库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!