aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Smiley <keithbsmiley@gmail.com>2024-05-15 15:23:29 -0700
committerGitHub <noreply@github.com>2024-05-15 15:23:29 -0700
commit00179e92c147e16de1f7c653f88c8805aef820c1 (patch)
tree490b03183ea1a93f529ffc209f85f2f893023612
parentf97f039e0bb7bb60c9cc437f678059c5ee19c8da (diff)
downloadllvm-00179e92c147e16de1f7c653f88c8805aef820c1.zip
llvm-00179e92c147e16de1f7c653f88c8805aef820c1.tar.gz
llvm-00179e92c147e16de1f7c653f88c8805aef820c1.tar.bz2
[bazel] Add new dependencies (#92323)
This also fixes building ... on Linux. Seems like target_compatible_with isn't enough but you also need a manual tag.
-rw-r--r--utils/bazel/llvm-project-overlay/lldb/BUILD.bazel5
-rw-r--r--utils/bazel/llvm-project-overlay/llvm/unittests/BUILD.bazel1
2 files changed, 5 insertions, 1 deletions
diff --git a/utils/bazel/llvm-project-overlay/lldb/BUILD.bazel b/utils/bazel/llvm-project-overlay/lldb/BUILD.bazel
index c6fc4e0..ddcaea5 100644
--- a/utils/bazel/llvm-project-overlay/lldb/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/lldb/BUILD.bazel
@@ -916,7 +916,10 @@ apple_genrule(
srcs = [":debugserver_unsigned"],
outs = ["debugserver"],
cmd = "cp $(SRCS) $(OUTS) && xcrun codesign -f -s - --entitlements $(location tools/debugserver/resources/debugserver-macosx-entitlements.plist) $(OUTS)",
- tags = ["nobuildkite"],
+ tags = [
+ "manual",
+ "nobuildkite",
+ ],
target_compatible_with = select({
"@platforms//os:macos": [],
"//conditions:default": ["@platforms//:incompatible"],
diff --git a/utils/bazel/llvm-project-overlay/llvm/unittests/BUILD.bazel b/utils/bazel/llvm-project-overlay/llvm/unittests/BUILD.bazel
index 21f0c70..b44489e2 100644
--- a/utils/bazel/llvm-project-overlay/llvm/unittests/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/llvm/unittests/BUILD.bazel
@@ -617,6 +617,7 @@ cc_test(
allow_empty = False,
),
deps = [
+ "//llvm:BitstreamReader",
"//llvm:Core",
"//llvm:Coverage",
"//llvm:DebugInfo",