Skip to content

Commit df3800f

Browse files
committed
[bazel][libc] Add more missing deps for parsing headers standalone.
Commit c192b3d missed some targets when fixing standalone header parsing after 019a477.
1 parent 57cbd26 commit df3800f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ libc_support_library(
157157
hdrs = ["src/__support/CPP/bit.h"],
158158
deps = [
159159
":__support_cpp_type_traits",
160+
":__support_macros_attributes",
160161
":__support_macros_config",
161162
":libc_root",
162163
],
@@ -165,14 +166,18 @@ libc_support_library(
165166
libc_support_library(
166167
name = "__support_cpp_bitset",
167168
hdrs = ["src/__support/CPP/bitset.h"],
168-
deps = [":libc_root"],
169+
deps = [
170+
":__support_macros_attributes",
171+
":libc_root",
172+
],
169173
)
170174

171175
libc_support_library(
172176
name = "__support_cpp_cstddef",
173177
hdrs = ["src/__support/CPP/cstddef.h"],
174178
deps = [
175179
":__support_cpp_type_traits",
180+
":__support_macros_attributes",
176181
":libc_root",
177182
],
178183
)

0 commit comments

Comments
 (0)