Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
42 changes: 42 additions & 0 deletions libc/Maintainers.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
=====================
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)

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