You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are several errors in crc32.c, mostly due to mismatched argument size in a few calls. For example, crc32_combine_gen64 was seen first taking a 64-bit argument and then called here with a 32-bit one.
There are several errors in
crc32.c
, mostly due to mismatched argument size in a few calls. For example,crc32_combine_gen64
was seen first taking a 64-bit argument and then called here with a 32-bit one.One more is due to
crc32_combine_op
being declared as an exported function in a header and then defined without the export declaration.You can see example failures here:
https://github.com/StoneStepsInc/zlib-nuget/runs/6747245701?check_suite_focus=true
Patches for these and Makefile.msc, which mixes up release/debug CRT, are available here.
https://github.com/StoneStepsInc/zlib-nuget/tree/master/patches
The text was updated successfully, but these errors were encountered: