Skip to content

Commit 53b3c9e

Browse files
authored
[bazel] Fix libc/hdr past c63112a (#111135)
1 parent 948467b commit 53b3c9e

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,9 @@ libc_support_library(
148148
libc_support_library(
149149
name = "hdr_stdio_macros",
150150
hdrs = ["hdr/stdio_macros.h"],
151+
deps = [
152+
":hdr_stdio_overlay",
153+
],
151154
)
152155

153156
libc_support_library(
@@ -215,11 +218,17 @@ libc_support_library(
215218
libc_support_library(
216219
name = "types_off_t",
217220
hdrs = ["hdr/types/off_t.h"],
221+
deps = [
222+
":hdr_stdio_overlay",
223+
],
218224
)
219225

220226
libc_support_library(
221227
name = "types_FILE",
222228
hdrs = ["hdr/types/FILE.h"],
229+
deps = [
230+
":hdr_stdio_overlay",
231+
],
223232
)
224233

225234
libc_support_library(

0 commit comments

Comments
 (0)