summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorJorge Gorbe Moya <jgorbe@google.com>2023-04-25 10:46:58 -0700
committerJorge Gorbe Moya <jgorbe@google.com>2023-04-25 10:47:53 -0700
commit3778574507db83c90f76d8680a6c2a55649e63f5 (patch)
tree4b9b7733add0faf7abdadeb54f5be2e8f53e126b /utils
parentd9f033146b47ceef94c1f041afcd339ef007279e (diff)
downloadllvm-3778574507db83c90f76d8680a6c2a55649e63f5.tar.gz
[bazel] Fix libc target deps after 7090c102731192d5abafb7e0b2b49adb4912efae
Diffstat (limited to 'utils')
-rw-r--r--utils/bazel/llvm-project-overlay/libc/BUILD.bazel8
1 files changed, 7 insertions, 1 deletions
diff --git a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
index 424986ae1e68..4fc5202e0397 100644
--- a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
@@ -156,7 +156,12 @@ libc_support_library(
libc_support_library(
name = "__support_cpp_functional",
hdrs = ["src/__support/CPP/functional.h"],
- deps = [":libc_root"],
+ deps = [
+ "__support_cpp_type_traits",
+ "__support_cpp_utility",
+ "__support_macros_attributes",
+ ":libc_root",
+ ],
)
libc_support_library(
@@ -214,6 +219,7 @@ libc_support_library(
hdrs = ["src/__support/CPP/utility.h"],
deps = [
":__support_cpp_type_traits",
+ ":__support_macros_attributes",
":libc_root",
],
)