Skip to content

Commit c192b3d

Browse files
committed
[bazel] Add missing deps for parsing headers standalone
Needed for 019a477
1 parent b743c19 commit c192b3d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,10 @@ libc_support_library(
146146
libc_support_library(
147147
name = "__support_cpp_array",
148148
hdrs = ["src/__support/CPP/array.h"],
149-
deps = [":libc_root"],
149+
deps = [
150+
":__support_macros_attributes",
151+
":libc_root",
152+
],
150153
)
151154

152155
libc_support_library(
@@ -428,6 +431,7 @@ libc_support_library(
428431
libc_support_library(
429432
name = "__support_ctype_utils",
430433
hdrs = ["src/__support/ctype_utils.h"],
434+
deps = [":__support_macros_attributes"],
431435
)
432436

433437
libc_support_library(

0 commit comments

Comments
 (0)