From 8ff1c11d9696c1d8b76710b967d74a64a06a84a2 Mon Sep 17 00:00:00 2001 From: Appu Date: Thu, 5 Oct 2023 11:39:32 -0400 Subject: [PATCH] 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 :shrug: --- cpu/BUILD | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cpu/BUILD b/cpu/BUILD index 9670e0c..6497452 100644 --- a/cpu/BUILD +++ b/cpu/BUILD @@ -144,6 +144,11 @@ constraint_value( constraint_setting = ":cpu", ) +constraint_value( + name = "ppc64le", + constraint_setting = ":cpu", +) + constraint_value( name = "s390x", constraint_setting = ":cpu",