don't use buildmode=pie on ppc64

It's already omitted for ppc64 in
hack/dockerfile/install/install.sh
not using wildcard, because GOARCH=ppc64le supports pie

Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
This commit is contained in:
Georgy Yakovlev 2021-06-10 16:19:22 -07:00
parent b7b7571331
commit 2cd68d5268
No known key found for this signature in database
GPG Key ID: A272C8F015129D52
1 changed files with 3 additions and 2 deletions

View File

@ -68,9 +68,10 @@ hash_files() {
esac
fi
# -buildmode=pie is not supported on Windows and Linux on mips and riscv64.
# -buildmode=pie is not supported on Windows and Linux on mips, riscv64 and ppc64be.
# https://github.com/golang/go/blob/master/src/cmd/internal/sys/supported.go#L89-L99
case "$(go env GOOS)/$(go env GOARCH)" in
windows/* | linux/mips* | linux/riscv*) ;;
windows/* | linux/mips* | linux/riscv* | linux/ppc64) ;;
*)
BUILDFLAGS+=("-buildmode=pie")