Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compiling with Visual Studio 2022 #4728

Open
inikulshin opened this issue May 23, 2024 · 0 comments
Open

Compiling with Visual Studio 2022 #4728

inikulshin opened this issue May 23, 2024 · 0 comments

Comments

@inikulshin
Copy link

inikulshin commented May 23, 2024

On May 22, 2024 Microsoft released new Windows SDK (https://developer.microsoft.com/en-us/windows/downloads/windows-sdk/)

After installing it I was unable to build win32/build.bat with Visual Studio 2019 and toolset v142:

libucrt.lib(checkcfg.obj) : error LNK2001: unresolved external symbol _guard_check_icall_$fo$

Enabling Visual Studio 2022 with toolset v143 in win32/common.vcxproj resolved the issue it for me:

  <!-- Visual Studio 2022 (17.0) -->
  <PropertyGroup Condition="'$(VisualStudioVersion)' == '17.0'">
    <PlatformToolset>v143</PlatformToolset>
  </PropertyGroup>  

FYI

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant