Skip to content

Commit fbef911

Browse files
authored
[bazel] Fix cyclic dependencies for macos (#104528)
Similar to #104481. Replace more "Utility" dependencies with "UtilityHeaders" to avoid cyclic dependency when building on macos.
1 parent f668708 commit fbef911

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

utils/bazel/llvm-project-overlay/lldb/BUILD.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ cc_library(
469469
"include/lldb/Host/posix/*.h",
470470
]),
471471
strip_include_prefix = "include",
472-
deps = [":Utility"],
472+
deps = [":UtilityHeaders"],
473473
)
474474

475475
cc_library(
@@ -484,7 +484,7 @@ cc_library(
484484
"@platforms//os:macos": [],
485485
"//conditions:default": ["@platforms//:incompatible"],
486486
}),
487-
deps = [":Utility"],
487+
deps = [":UtilityHeaders"],
488488
)
489489

490490
objc_library(
@@ -502,7 +502,7 @@ objc_library(
502502
":Headers",
503503
":HostMacOSXHeaders",
504504
":HostMacOSXPrivateHeaders",
505-
":Utility",
505+
":UtilityHeaders",
506506
"//llvm:Support",
507507
"//llvm:TargetParser",
508508
],

0 commit comments

Comments
 (0)