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

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


Author: Michael Jones
Date: 2024-07-17T16:42:18-07:00
New Revision: 90cbb1ec4ff9c687f7ebca505845388655ed5582

URL: https://github.com/llvm/llvm-project/commit/90cbb1ec4ff9c687f7ebca505845388655ed5582
DIFF: https://github.com/llvm/llvm-project/commit/90cbb1ec4ff9c687f7ebca505845388655ed5582.diff

LOG: [libc] Temporarily disable statvfs header (#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.

Added: 
    

Modified: 
    libc/config/linux/x86_64/headers.txt

Removed: 
    


################################################################################
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