-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[libc] Fix path to fcntl_overlay in cmake #114464
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
The proxy header definition for mode_t was using an incorrect form for its dependency on fcntl_overlay. The relative paths for dependencies can only go down, not up so "../" doesn't work. This patch fixes it to be absolute.
@llvm/pr-subscribers-libc Author: Michael Jones (michaelrj-google) ChangesThe proxy header definition for mode_t was using an incorrect form for Full diff: https://github.com/llvm/llvm-project/pull/114464.diff 1 Files Affected:
diff --git a/libc/hdr/types/CMakeLists.txt b/libc/hdr/types/CMakeLists.txt
index e45979857d7955..5ad71e7a6ff46c 100644
--- a/libc/hdr/types/CMakeLists.txt
+++ b/libc/hdr/types/CMakeLists.txt
@@ -51,7 +51,7 @@ add_proxy_header_library(
HDRS
mode_t.h
DEPENDS
- ../fcntl_overlay
+ libc.hdr.fcntl_overlay
FULL_BUILD_DEPENDS
libc.include.llvm-libc-types.mode_t
libc.include.fcntl
|
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/104/builds/9609 Here is the relevant piece of the build log for the reference
|
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/43/builds/9380 Here is the relevant piece of the build log for the reference
|
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/93/builds/9262 Here is the relevant piece of the build log for the reference
|
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/147/builds/9036 Here is the relevant piece of the build log for the reference
|
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/78/builds/8795 Here is the relevant piece of the build log for the reference
|
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/188/builds/6164 Here is the relevant piece of the build log for the reference
|
The proxy header definition for mode_t was using an incorrect form for its dependency on fcntl_overlay. The relative paths for dependencies can only go down, not up so "../" doesn't work. This patch fixes it to be absolute.
The proxy header definition for mode_t was using an incorrect form for its dependency on fcntl_overlay. The relative paths for dependencies can only go down, not up so "../" doesn't work. This patch fixes it to be absolute.
The proxy header definition for mode_t was using an incorrect form for
its dependency on fcntl_overlay. The relative paths for dependencies can
only go down, not up so "../" doesn't work. This patch fixes it to be
absolute.