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
// Silce must fix in 32-bit address space to build on 32-bit platforms.return (*[math.MaxInt32]byte)(ptr)[:]
The docs clearly say that 1 << 30 should be used instead of math.MaxInt32. There have been discussions here and here about this, but they haven't ever resulted in anything nicer to use.
The text was updated successfully, but these errors were encountered:
Addresses most of the issues in #101.
The following commands now succeed:
GOARCH=mips go build github.com/google/fscrypt/util
GOARCH=mipsle go build github.com/google/fscrypt/util
Running either of the following commands:
results in the following error:
This has broken the Debian package for mips and mipsle.
This failure comes from my error here:
The docs clearly say that
1 << 30
should be used instead ofmath.MaxInt32
. There have been discussions here and here about this, but they haven't ever resulted in anything nicer to use.The text was updated successfully, but these errors were encountered: