Skip to content

Commit 7474fcb

Browse files
committed
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.
1 parent b8e0358 commit 7474fcb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

BUILD

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ filegroup(
229229
"Headers/DebugServer2/Architecture/ARM/SoftwareSingleStep.h",
230230
"Headers/DebugServer2/Architecture/ARM64/CPUState.h",
231231
":generated_ARM64_register_definitions_header",
232-
":generated_ARM_reigster_definitions_header",
232+
":generated_ARM_register_definitions_header",
233233
],
234234
"@platforms//cpu:i386": [
235235
"Headers/DebugServer2/Architecture/X86/CPUState.h",
@@ -528,6 +528,8 @@ cc_binary(
528528
"HAVE_SYS_PERSONALITY_H",
529529
"HAVE_TGKILL",
530530
],
531+
"//conditions:default": [
532+
],
531533
}),
532534
includes = [
533535
"Headers",

0 commit comments

Comments
 (0)