aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Jones <michaelrj@google.com>2025-03-20 14:13:12 -0700
committerGitHub <noreply@github.com>2025-03-20 14:13:12 -0700
commit09ff6db0dcb3ea223282a35aa4f9dc9aaf358c05 (patch)
tree9c36f8b41cf554c24ea2cfaa36d94d305929d8d8
parent3fbc9b9efc669a236ab21ab06f854bd9ad751af3 (diff)
downloadllvm-09ff6db0dcb3ea223282a35aa4f9dc9aaf358c05.zip
llvm-09ff6db0dcb3ea223282a35aa4f9dc9aaf358c05.tar.gz
llvm-09ff6db0dcb3ea223282a35aa4f9dc9aaf358c05.tar.bz2
[bazel] add missing dep to errno_test_helpers (#132278)
Bazel doesn't complain, but downstream it's causing build failures.
-rw-r--r--utils/bazel/llvm-project-overlay/libc/test/UnitTest/BUILD.bazel1
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/bazel/llvm-project-overlay/libc/test/UnitTest/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/test/UnitTest/BUILD.bazel
index 27e468d..b37ec19 100644
--- a/utils/bazel/llvm-project-overlay/libc/test/UnitTest/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/libc/test/UnitTest/BUILD.bazel
@@ -80,6 +80,7 @@ libc_test_library(
],
deps = [
":LibcUnitTest",
+ "//libc:__support_macros_config",
"//libc:errno",
],
)