[libc-commits] [libc] [libc] document supported os ranges (PR #118863)
Schrodinger ZHU Yifan via libc-commits
libc-commits at lists.llvm.org
Thu Dec 5 11:47:54 PST 2024
https://github.com/SchrodingerZhu created https://github.com/llvm/llvm-project/pull/118863
LLVM-libc does not guarantee backward compatibility with operating systems that reaches their EOL.
Compatibility patch for obsolete operating systems will not be accepted.
For Linux, we support kernel versions as listed on [kernel.org](https://kernel.org/>), including
``longterm``, ``stable``, and ``mainline`` versions. We actively adapt new features
from ``linux-next``.
For Windows, we support products within their lifecycle. Please refer to
[Search Product and Services Lifecycle Information](https://learn.microsoft.com/en-us/lifecycle/products/?products=windows) for more information.
>From 80b4ad6128628e8f8514bdbe716a84efc3da4f65 Mon Sep 17 00:00:00 2001
From: Schrodinger ZHU Yifan <i at zhuyi.fan>
Date: Thu, 5 Dec 2024 11:44:33 -0800
Subject: [PATCH] [libc] document supported os ranges
---
libc/docs/index.rst | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/libc/docs/index.rst b/libc/docs/index.rst
index 6f759aa215b62c..c4cb12be1377e8 100644
--- a/libc/docs/index.rst
+++ b/libc/docs/index.rst
@@ -40,6 +40,16 @@ and MacOS have limited support (may be broken). The Fuchsia platform is
slowly replacing functions from its bundled libc with functions from this
project.
+LLVM-libc does not guarantee backward compatibility with operating systems that reaches their EOL.
+Compatibility patch for obsolete operating systems will not be accepted.
+
+For Linux, we support kernel versions as listed on `kernel.org <https://kernel.org/>`_, including
+``longterm``, ``stable``, and ``mainline`` versions. We actively adapt new features
+from ``linux-next``.
+
+For Windows, we support products within their lifecycle. Please refer to
+`Search Product and Services Lifecycle Information <https://learn.microsoft.com/en-us/lifecycle/products/?products=windows>`_ for more information.
+
ABI Compatibility
=================
More information about the libc-commits
mailing list