-
Notifications
You must be signed in to change notification settings - Fork 269
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
libressl 4.0.0 build fails when using Clang on Windows #1111
Comments
There are too many ways to build things on Windows... :) Yes, it will be a consequence of #1078. For -stable we probably need to stick with Could you check if #1112 fixes this on your end? I don't have access to Windows, and obviously CI doesn't cover this case. |
This seems to work on my end with both msvc and clang. |
Awesome. Thanks for the report and testing. |
If I understand this correctly, this build issue surfaced as a result of #1078 because
posix_win.c
now includessys/time.h
, resulting in the compiler now seeing both the declaration and definition of thegettimeofday
function, which have different argument types:void *
vsstruct timezone *
. So now the compiler can finally complain about this.However, the msvc compiler has no issues with this, and doesn't even have a warning that could be emitted for it.
The text was updated successfully, but these errors were encountered: