-
Notifications
You must be signed in to change notification settings - Fork 226
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
Unbreak on 32-bit architectures #30
Comments
Thanks! i'm also working on adding a 32-bit build and test run to the CI. Also thanks for the FreeBSD port, should i also add some kind of install instructions for how to use it in the README? |
Installation is pretty straightforward and as simple as |
Ok 👍 maybe will just mention that there is a port at least. Will do some rework of the install/build section in the readme soon. |
Hmm, yeah I guess that would be nice, thanks! |
#29 adds a 32-bit (386) CI build for linux |
The
MakeTable()
function inpkg/checksum/crc.go
acceptspoly int
parameter (which is later being cast touint
), but called with0xedb88320
argument which overflows it on 32 bits. Consider this trivial patch.The text was updated successfully, but these errors were encountered: