[llvm] 6cc208c - [libc] Add maintainers file (#133471)

via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 28 16:50:23 PDT 2025


Author: Michael Jones
Date: 2025-03-28T16:50:19-07:00
New Revision: 6cc208cd3c80a57c535ad2ea7e8a189d02966682

URL: https://github.com/llvm/llvm-project/commit/6cc208cd3c80a57c535ad2ea7e8a189d02966682
DIFF: https://github.com/llvm/llvm-project/commit/6cc208cd3c80a57c535ad2ea7e8a189d02966682.diff

LOG: [libc] Add maintainers file (#133471)

Based on #133297 by jhuber.

LLVM-libc needs a maintainers file, this patch adds an initial set.
The file is based on `clang/maintainers.rst` and
https://llvm.org/docs/DeveloperPolicy.html#maintainers.

Added: 
    libc/Maintainers.rst
    libc/docs/Maintainers.rst

Modified: 
    libc/docs/CMakeLists.txt
    libc/docs/index.rst
    llvm/Maintainers.md

Removed: 
    


################################################################################
diff  --git a/libc/Maintainers.rst b/libc/Maintainers.rst
new file mode 100644
index 0000000000000..7991397532da5
--- /dev/null
+++ b/libc/Maintainers.rst
@@ -0,0 +1,52 @@
+=====================
+LLVM-libc Maintainers
+=====================
+
+This file is a list of the
+`maintainers <https://llvm.org/docs/DeveloperPolicy.html#maintainers>`_ for
+LLVM-libc. The following people are the active maintainers for the project.
+Please reach out to them for code reviews, questions about their area of
+expertise, or other assistance.
+
+.. contents::
+   :depth: 1
+   :local:
+
+Lead Maintainer
+---------------
+| Michael Jones
+| michaelrj\@google.com (email), `michaelrj-google <https://github.com/michaelrj-google>`_ (github)
+
+Baremetal
+---------
+| Petr Hosek
+| phosek\@google.com (email), `petrhosek <https://github.com/petrhosek>`_ (github)
+
+Fixed Point
+-----------
+| Leonard Chan
+| leonardchan\@google.com (email), `PiJoules <https://github.com/PiJoules>`_ (github)
+
+GPU
+---
+| Joseph Huber
+| joseph.huber\@amd.com (email), `jhuber6 <https://github.com/jhuber6>`_ (github)
+
+Math
+----
+| Tue Ly
+| lntue\@google.com (email), `lntue <https://github.com/lntue>`_ (github)
+| Nicolas Celik
+| its.overmighty\@gmail.com (email), `OverMighty <https://github.com/overmighty>`_ (github)
+
+Threading
+---------
+| Yifan Zhu
+| yifanzhu\@rochester.edu (email), `Schrodinger ZHU Yifan <https://github.com/schrodingerzhu>`_ (github)
+
+UEFI
+----
+| Tristan Ross
+| tristan.ross\@midstall.com (email), `RossComputerGuy <https://github.com/RossComputerGuy>`_ (github)
+
+.. TODO: add "Inactive Maintainers" section when needed.

diff  --git a/libc/docs/CMakeLists.txt b/libc/docs/CMakeLists.txt
index 150ee2085160a..5b89511c33bdc 100644
--- a/libc/docs/CMakeLists.txt
+++ b/libc/docs/CMakeLists.txt
@@ -8,7 +8,12 @@ if (SPHINX_FOUND)
     # want the dynamically generated .rst files to pollute the source tree.
     add_custom_target(copy-libc-rst-docs
       COMMAND "${CMAKE_COMMAND}" -E copy_directory
-              "${CMAKE_CURRENT_SOURCE_DIR}" "${CMAKE_CURRENT_BINARY_DIR}")
+              "${CMAKE_CURRENT_SOURCE_DIR}" "${CMAKE_CURRENT_BINARY_DIR}"
+
+      COMMAND "${CMAKE_COMMAND}" -E copy_if_
diff erent
+              "${CMAKE_CURRENT_SOURCE_DIR}/../Maintainers.rst"
+              "${CMAKE_CURRENT_BINARY_DIR}"
+      )
 
     # For headers that are nested in directories, we need to
     # `mkdir $build_dir/libc/docs/headers/$dir` since the above copy_directory

diff  --git a/libc/docs/Maintainers.rst b/libc/docs/Maintainers.rst
new file mode 100644
index 0000000000000..7e69c1165d2f5
--- /dev/null
+++ b/libc/docs/Maintainers.rst
@@ -0,0 +1 @@
+.. include:: ../Maintainers.rst

diff  --git a/libc/docs/index.rst b/libc/docs/index.rst
index bf982cc456349..7238d1383511e 100644
--- a/libc/docs/index.rst
+++ b/libc/docs/index.rst
@@ -71,6 +71,7 @@ LLVM-libc aspires to a unique place in the software ecosystem.  The goals are:
    :maxdepth: 1
    :caption: Development
 
+   Maintainers
    build_and_test
    dev/index.rst
    porting

diff  --git a/llvm/Maintainers.md b/llvm/Maintainers.md
index 47e936e0c39eb..fbb170cec8737 100644
--- a/llvm/Maintainers.md
+++ b/llvm/Maintainers.md
@@ -467,6 +467,8 @@ Some subprojects maintain their own list of per-component maintainers.
 
 [libc++ maintainers](https://github.com/llvm/llvm-project/blob/main/libcxx/Maintainers.md)
 
+[Libc maintainers](https://github.com/llvm/llvm-project/blob/main/libc/Maintainers.rst)
+
 [libclc maintainers](https://github.com/llvm/llvm-project/blob/main/libclc/Maintainers.md)
 
 [LLD maintainers](https://github.com/llvm/llvm-project/blob/main/lld/Maintainers.md)


        


More information about the llvm-commits mailing list