Add ppc64le cpu (#64)

This is a specific cpu variant of ppc64 in little-endian mode.

GOARCH has equivalent: https://gist.github.com/asukakenji/f15ba7e588ac42795f421b48b8aede63#goarch-values

Debian also builds (though with weird naming): https://wiki.debian.org/ppc64el

It is weird that the other entries here are ppc and ppc32, I would actually expect ppc and ppc64 but 🤷
This commit is contained in:
Appu 2023-10-05 11:39:32 -04:00 committed by GitHub
parent f55a7d3532
commit 8ff1c11d96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -144,6 +144,11 @@ constraint_value(
constraint_setting = ":cpu", constraint_setting = ":cpu",
) )
constraint_value(
name = "ppc64le",
constraint_setting = ":cpu",
)
constraint_value( constraint_value(
name = "s390x", name = "s390x",
constraint_setting = ":cpu", constraint_setting = ":cpu",