-
-
Notifications
You must be signed in to change notification settings - Fork 455
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
fix: handle older VC redist versions #5447
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clang-tidy made some suggestions
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clang-tidy made some suggestions
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clang-tidy made some suggestions
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clang-tidy made some suggestions
5671128
to
423837f
Compare
With Visual Studio v17.10 and MSVC 14.40, we require a new VC Runtime to be installed (see https://github.com/microsoft/STL/releases/tag/vs-2022-17.10). Alternatively, we can set
_DISABLE_CONSTEXPR_MUTEX_CONSTRUCTOR
. I hate to do that, but it's the best option for users (it's not yet on, but I'll probably enable it). By default, builds will build without it (these builds will show a warning when started). Ideally, we'd statically link to it, but I'm not sure if that's possible (#2323).