whyrusleeping / gx

A package management tool
MIT License
1.88k stars 111 forks source link

Build issues for ppc64le architecture #235

Closed OTLabs closed 5 years ago

OTLabs commented 5 years ago

I would like to bring to your kind attention that it is impossible to build gx for ppc64le architecture right now due to following error:

# github.com/whyrusleeping/gx/vendor/github.com/minio/sha256-simd
vendor/github.com/minio/sha256-simd/sha256block_other.go:26:6: block redeclared in this block
    previous declaration at vendor/github.com/minio/sha256-simd/sha256block_noasm.go:21:29
Stebalien commented 5 years ago

Are your deps up to date (and it looks like you're vendoring). GOARCH=ppc64le go build works fine on my machine.

OTLabs commented 5 years ago

You are so right! Updating the deps (just one of them) solved the issue. Thank you!