*: add ppc64le support (#2963)

* Add vendor/golang.org/x/arch/ppc64

* Add ppc64le support
This commit is contained in:
Álex Sáez
2023-07-07 18:30:38 +02:00
committed by GitHub
parent 9f3e146129
commit 71f1220717
38 changed files with 7593 additions and 17 deletions

View File

@ -291,6 +291,9 @@ func tagFlags() string {
if runtime.GOOS == "windows" && runtime.GOARCH == "arm64" {
tags = append(tags, "exp.winarm64")
}
if runtime.GOOS == "linux" && runtime.GOARCH == "ppc64le" {
tags = append(tags, "exp.linuxppc64le")
}
if Tags != nil && len(*Tags) > 0 {
tags = append(tags, *Tags...)
}