[libc-commits] [libc] 771440f - [libc][docs] Add dlfcn.h implementation status (#122006) (#193972)
via libc-commits
libc-commits at lists.llvm.org
Fri Apr 24 07:01:21 PDT 2026
Author: Petter Berntsson
Date: 2026-04-24T15:01:16+01:00
New Revision: 771440f5bb2e0684a82c770293f561d17aedd0c0
URL: https://github.com/llvm/llvm-project/commit/771440f5bb2e0684a82c770293f561d17aedd0c0
DIFF: https://github.com/llvm/llvm-project/commit/771440f5bb2e0684a82c770293f561d17aedd0c0.diff
LOG: [libc][docs] Add dlfcn.h implementation status (#122006) (#193972)
Add dlfcn.h implementation-status docs to llvm-libc.
Added:
libc/utils/docgen/dlfcn.yaml
Modified:
libc/docs/CMakeLists.txt
libc/docs/headers/index.rst
Removed:
################################################################################
diff --git a/libc/docs/CMakeLists.txt b/libc/docs/CMakeLists.txt
index 6d89a3e691dc9..7fa7775eb3d76 100644
--- a/libc/docs/CMakeLists.txt
+++ b/libc/docs/CMakeLists.txt
@@ -45,6 +45,7 @@ if (SPHINX_FOUND)
cpio
ctype
dirent
+ dlfcn
endian
errno
fcntl
diff --git a/libc/docs/headers/index.rst b/libc/docs/headers/index.rst
index cfe76f3c4a73f..542615ea3e1b3 100644
--- a/libc/docs/headers/index.rst
+++ b/libc/docs/headers/index.rst
@@ -11,6 +11,7 @@ Implementation Status
cpio
ctype
dirent
+ dlfcn
endian
errno
fcntl
diff --git a/libc/utils/docgen/dlfcn.yaml b/libc/utils/docgen/dlfcn.yaml
new file mode 100644
index 0000000000000..910e55ec840bc
--- /dev/null
+++ b/libc/utils/docgen/dlfcn.yaml
@@ -0,0 +1,21 @@
+functions:
+ dladdr:
+ in-latest-posix: ""
+ dlclose:
+ in-latest-posix: ""
+ dlerror:
+ in-latest-posix: ""
+ dlopen:
+ in-latest-posix: ""
+ dlsym:
+ in-latest-posix: ""
+
+macros:
+ RTLD_GLOBAL:
+ in-latest-posix: ""
+ RTLD_LAZY:
+ in-latest-posix: ""
+ RTLD_LOCAL:
+ in-latest-posix: ""
+ RTLD_NOW:
+ in-latest-posix: ""
More information about the libc-commits
mailing list