We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We're not using dgo directly (we're using lyraproject/hiera). It seems like dgo will fail to build for 32bit architectures.
dgo
lyraproject/hiera
For both GOARCH=386 GOOS=darwin go build or GOARCH=386 GOOS=linux go build, we get the following errors:
GOARCH=386 GOOS=darwin go build
GOARCH=386 GOOS=linux go build
github.com/lyraproj/dgo/internal # github.com/lyraproj/dgo/internal ../../go/pkg/mod/github.com/lyraproj/[email protected]/internal/array.go:49:27: constant 9223372036854775807 overflows int ../../go/pkg/mod/github.com/lyraproj/[email protected]/internal/array.go:51:31: constant 9223372036854775807 overflows int ../../go/pkg/mod/github.com/lyraproj/[email protected]/internal/array.go:64:30: constant 9223372036854775807 overflows int ../../go/pkg/mod/github.com/lyraproj/[email protected]/internal/array.go:119:21: constant 9223372036854775807 overflows int ../../go/pkg/mod/github.com/lyraproj/[email protected]/internal/array.go:155:2: constant 9223372036854775807 overflows int ../../go/pkg/mod/github.com/lyraproj/[email protected]/internal/array.go:224:11: constant 9223372036854775807 overflows int ../../go/pkg/mod/github.com/lyraproj/[email protected]/internal/array.go:280:29: constant 9223372036854775807 overflows int ../../go/pkg/mod/github.com/lyraproj/[email protected]/internal/array.go:308:72: constant 9223372036854775807 overflows int ../../go/pkg/mod/github.com/lyraproj/[email protected]/internal/array.go:533:48: constant 9223372036854775807 overflows int ../../go/pkg/mod/github.com/lyraproj/[email protected]/internal/binary.go:33:44: constant 9223372036854775807 overflows int ../../go/pkg/mod/github.com/lyraproj/[email protected]/internal/array.go:533:48: too many errors
32bit isn't important for us, we can do without. But I figure I'd open an issue if it's an easy fix or if anyone else runs into it.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We're not using
dgo
directly (we're usinglyraproject/hiera
). It seems likedgo
will fail to build for 32bit architectures.For both
GOARCH=386 GOOS=darwin go build
orGOARCH=386 GOOS=linux go build
, we get the following errors:32bit isn't important for us, we can do without. But I figure I'd open an issue if it's an easy fix or if anyone else runs into it.
The text was updated successfully, but these errors were encountered: