[libc-commits] [libc] [libc] Temporarily disable statvfs header (PR #99405)

Michael Jones via libc-commits libc-commits at lists.llvm.org
Wed Jul 17 16:41:21 PDT 2024


https://github.com/michaelrj-google created https://github.com/llvm/llvm-project/pull/99405

The statfvs header was not generating for a while. Patch #98983 added it
to the list of headers, but it's apparently broken right now so this
patch comments it out until it can be fixed.


>From fa9350d8aa8c792fc0448508580265b5a8a91fd1 Mon Sep 17 00:00:00 2001
From: Michael Jones <michaelrj at google.com>
Date: Wed, 17 Jul 2024 16:40:01 -0700
Subject: [PATCH] [libc] Temporarily disable statvfs header

The statfvs header was not generating for a while. Patch #98983 added it
to the list of headers, but it's apparently broken right now so this
patch comments it out until it can be fixed.
---
 libc/config/linux/x86_64/headers.txt | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libc/config/linux/x86_64/headers.txt b/libc/config/linux/x86_64/headers.txt
index 0294f62bc2f7a..8a52d80e1fbfb 100644
--- a/libc/config/linux/x86_64/headers.txt
+++ b/libc/config/linux/x86_64/headers.txt
@@ -45,7 +45,8 @@ set(TARGET_PUBLIC_HEADERS
     libc.include.sys_select
     libc.include.sys_socket
     libc.include.sys_stat
-    libc.include.sys_statvfs
+    # statvfs is broken, will uncomment once it's fixed.
+    # libc.include.sys_statvfs
     libc.include.sys_syscall
     libc.include.sys_time
     libc.include.sys_types



More information about the libc-commits mailing list