Skip to content

[libc] Add maintainers file #133471

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

Merged
merged 3 commits into from
Mar 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions libc/Maintainers.rst
Original file line number Diff line number Diff line change
@@ -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.
7 changes: 6 additions & 1 deletion libc/docs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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_different
"${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
Expand Down
1 change: 1 addition & 0 deletions libc/docs/Maintainers.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.. include:: ../Maintainers.rst
1 change: 1 addition & 0 deletions libc/docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions llvm/Maintainers.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading