From 5c38783cc31d9ba783de5f829d2f38231bab063c Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Thu, 16 Jul 2026 13:17:00 -0700 Subject: [PATCH] Add amd64 and x64 as aliases to x86_64 These seem common enough that it's nice for rulesets / build files not to have to normalize it always --- cpu/BUILD | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/cpu/BUILD b/cpu/BUILD index 65d7cc2..3535338 100644 --- a/cpu/BUILD +++ b/cpu/BUILD @@ -171,6 +171,16 @@ constraint_value( constraint_setting = ":cpu", ) +alias( + name = "amd64", + actual = ":x86_64", +) + +alias( + name = "x64", + actual = ":x86_64", +) + constraint_value( name = "wasm32", constraint_setting = ":cpu",