diff options
| author | Guillaume Chatelet <gchatelet@google.com> | 2023-09-07 15:11:47 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-07 17:11:47 +0200 |
| commit | 8d18671d8126a9c1ce930b91325e4cf30cb3bb8d (patch) | |
| tree | 3729333686355093649a9ce1328d3b5b6cce2bb3 | |
| parent | afc96481c4b987ca25cbb9b9a57317a611f4305c (diff) | |
| download | llvm-8d18671d8126a9c1ce930b91325e4cf30cb3bb8d.zip llvm-8d18671d8126a9c1ce930b91325e4cf30cb3bb8d.tar.gz llvm-8d18671d8126a9c1ce930b91325e4cf30cb3bb8d.tar.bz2 | |
[libc][bazel] Fix missing dependencies for `lseek` (#65618)
Failure introduced in 8cd4ecfa6001eed7486fa3618bbd6bde47a0b075
| -rw-r--r-- | utils/bazel/llvm-project-overlay/libc/BUILD.bazel | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel index bdf260a..0f35d3d 100644 --- a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel +++ b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel @@ -2530,9 +2530,13 @@ libc_function( libc_function( name = "lseek", srcs = ["src/unistd/linux/lseek.cpp"], - hdrs = ["src/unistd/lseek.h"], + hdrs = [ + "src/__support/File/linux/lseekImpl.h", + "src/unistd/lseek.h", + ], deps = [ ":__support_common", + ":__support_error_or", ":__support_osutil_syscall", ":errno", ], |
