Skip to content

Commit 3fa6951

Browse files
committed
Fix incorrect Bazel dependency in host/hardware_irq
Bazel configuration adds a dependency on hardware_claim in 'host' but it doesn't exist there. It's in 'common'. Fixes #2738
1 parent 299fb7d commit 3fa6951

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/common/pico_base_headers/BUILD.bazel

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ cc_library(
9292
includes = ["include"],
9393
visibility = [
9494
"//src/common:__subpackages__",
95+
"//src/host/hardware_irq:__pkg__",
9596
"//src/host/hardware_sync:__pkg__",
9697
"//src/host/hardware_timer:__pkg__",
9798
"//src/host/pico_platform:__pkg__",

src/host/hardware_irq/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ cc_library(
88
tags = ["manual"], # TODO: No hardware/regs/intctrl.h for host yet.
99
target_compatible_with = ["//bazel/constraint:host"],
1010
deps = [
11-
"//src/host/hardware_claim",
11+
"//src/common/hardware_claim",
1212
"//src/host/pico_platform",
1313
],
1414
)

0 commit comments

Comments
 (0)