From fd5a0ee6f084f44931aa1f1583bfe829fc4d19d2 Mon Sep 17 00:00:00 2001 From: Matthew Johnson Date: Thu, 9 Oct 2025 11:12:47 -0400 Subject: [PATCH] cpu: Add armv8.1 cpu target Supports Cortex M52 and M55 series --- cpu/BUILD | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/cpu/BUILD b/cpu/BUILD index 6497452..cebbebe 100644 --- a/cpu/BUILD +++ b/cpu/BUILD @@ -94,6 +94,12 @@ constraint_value( constraint_setting = ":cpu", ) +# Cortex-M52, Cortex-M55 +constraint_value( + name = "armv8.1-m", + constraint_setting = ":cpu", +) + alias( name = "arm64", actual = ":aarch64",