Skip to content

Commit

Permalink
[bazel] Add missing dependencies for 8cd4ecf
Browse files Browse the repository at this point in the history
  • Loading branch information
gribozavr committed Sep 7, 2023
1 parent 412c2fd commit 26f7150
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions utils/bazel/llvm-project-overlay/libc/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -570,6 +570,16 @@ libc_support_library(
],
)

libc_support_library(
name = "__support_file_linux_lseekimpl",
hdrs = ["src/__support/File/linux/lseekImpl.h"],
deps = [
":__support_common",
":__support_error_or",
":__support_osutil_syscall",
],
)

libc_support_library(
name = "__support_named_pair",
hdrs = ["src/__support/named_pair.h"],
Expand Down Expand Up @@ -2530,13 +2540,10 @@ libc_function(
libc_function(
name = "lseek",
srcs = ["src/unistd/linux/lseek.cpp"],
hdrs = [
"src/__support/File/linux/lseekImpl.h",
"src/unistd/lseek.h",
],
hdrs = ["src/unistd/lseek.h"],
deps = [
":__support_common",
":__support_error_or",
":__support_file_linux_lseekimpl",
":__support_osutil_syscall",
":errno",
],
Expand Down

0 comments on commit 26f7150

Please sign in to comment.