-
Notifications
You must be signed in to change notification settings - Fork 18k
cmd/go: test.bash failing at tip #8809
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
Labels
Milestone
Comments
Comment 5 by dave@davec.name: I'm not 100% sure this is the same root cause, but it does look related. Please let me know if a separate issue is preferred. Go tip is failing when using code.google.com/p/go.crypto/poly1305 with missing type information: $ go build # tippoly1305fail missing Go type information for global symbol: code.google.com/p/go.crypto/poly1305.ALPHA130 size 8 missing Go type information for global symbol: code.google.com/p/go.crypto/poly1305.ALPHA32 size 8 missing Go type information for global symbol: code.google.com/p/go.crypto/poly1305.ALPHA64 size 8 missing Go type information for global symbol: code.google.com/p/go.crypto/poly1305.ALPHA96 size 8 missing Go type information for global symbol: code.google.com/p/go.crypto/poly1305.DOFFSET0 size 8 missing Go type information for global symbol: code.google.com/p/go.crypto/poly1305.DOFFSET1 size 8 missing Go type information for global symbol: code.google.com/p/go.crypto/poly1305.DOFFSET2 size 8 missing Go type information for global symbol: code.google.com/p/go.crypto/poly1305.DOFFSET3 size 8 missing Go type information for global symbol: code.google.com/p/go.crypto/poly1305.DOFFSET3MINUSTWO128 size 8 missing Go type information for global symbol: code.google.com/p/go.crypto/poly1305.HOFFSET0 size 8 missing Go type information for global symbol: code.google.com/p/go.crypto/poly1305.HOFFSET1 size 8 missing Go type information for global symbol: code.google.com/p/go.crypto/poly1305.HOFFSET2 size 8 missing Go type information for global symbol: code.google.com/p/go.crypto/poly1305.HOFFSET3 size 8 missing Go type information for global symbol: code.google.com/p/go.crypto/poly1305.SCALE size 8 Here is some minimal code which causes the failure: package main import ( "code.google.com/p/go.crypto/poly1305" ) func main() { var out [16]byte m := []byte("test") key := [32]byte{ 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, } poly1305.Sum(&out, m, &key) } |
CL https://golang.org/cl/9150 mentions this issue. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The text was updated successfully, but these errors were encountered: