mirror of https://github.com/bazelbuild/platforms
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:
parent
f55a7d3532
commit
8ff1c11d96
|
@ -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",
|
||||||
|
|
Loading…
Reference in New Issue