Skip to content

Commit 8d18671

Browse files
authored
[libc][bazel] Fix missing dependencies for lseek (#65618)
Failure introduced in 8cd4ecf
1 parent afc9648 commit 8d18671

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
@@ -2530,9 +2530,13 @@ libc_function(
25302530
libc_function(
25312531
name = "lseek",
25322532
srcs = ["src/unistd/linux/lseek.cpp"],
2533-
hdrs = ["src/unistd/lseek.h"],
2533+
hdrs = [
2534+
"src/__support/File/linux/lseekImpl.h",
2535+
"src/unistd/lseek.h",
2536+
],
25342537
deps = [
25352538
":__support_common",
2539+
":__support_error_or",
25362540
":__support_osutil_syscall",
25372541
":errno",
25382542
],

0 commit comments

Comments
 (0)