From 7782fd88091f83ff4795794d8d755892d67d1caf Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Mon, 3 Nov 2025 22:00:18 -0800 Subject: [PATCH] build: repair the bazel build on Darwin This repairs the Darwin ARM64 build of ds2 via bazel which was broken due to a missing case for the defines and a typo in the dependency. --- BUILD | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/BUILD b/BUILD index c4962784..276dd993 100644 --- a/BUILD +++ b/BUILD @@ -229,7 +229,7 @@ filegroup( "Headers/DebugServer2/Architecture/ARM/SoftwareSingleStep.h", "Headers/DebugServer2/Architecture/ARM64/CPUState.h", ":generated_ARM64_register_definitions_header", - ":generated_ARM_reigster_definitions_header", + ":generated_ARM_register_definitions_header", ], "@platforms//cpu:i386": [ "Headers/DebugServer2/Architecture/X86/CPUState.h", @@ -528,6 +528,8 @@ cc_binary( "HAVE_SYS_PERSONALITY_H", "HAVE_TGKILL", ], + "//conditions:default": [ + ], }), includes = [ "Headers",