[libcxx-commits] [PATCH] D140343: [libc++] List supported libcs
Nikolas Klauser via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Dec 19 12:59:46 PST 2022
philnik created this revision.
philnik added reviewers: ldionne, Mordante.
Herald added subscribers: mstorsjo, arphaman.
Herald added a project: All.
philnik requested review of this revision.
Herald added a project: libc++.
Herald added a subscriber: libcxx-commits.
Herald added a reviewer: libc++.
Some platforms support a variety of libcs and versions (for example different Linux distros ship glibc or musl). We don't support most of them, so we should list what we do support.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D140343
Files:
libcxx/docs/index.rst
Index: libcxx/docs/index.rst
===================================================================
--- libcxx/docs/index.rst
+++ libcxx/docs/index.rst
@@ -113,15 +113,15 @@
Libc++ also supports common platforms and architectures:
-=============== ========================= ============================
-Target platform Target architecture Notes
-=============== ========================= ============================
-macOS 10.9+ i386, x86_64, arm64 Building the shared library itself requires targetting macOS 10.11+
-FreeBSD 10+ i386, x86_64, arm
-Linux i386, x86_64, arm, arm64
-Windows i386, x86_64 Both MSVC and MinGW style environments
-AIX powerpc, powerpc64
-=============== ========================= ============================
+=============== ========================= ====================== ============================
+Target platform Target architecture supported libcs Notes
+=============== ========================= ====================== ============================
+macOS 10.9+ i386, x86_64, arm64 ???-??? Building the shared library itself requires targetting macOS 10.11+
+FreeBSD 10+ i386, x86_64, arm ???-???
+Linux i386, x86_64, arm, arm64 glibc-2.24+
+Windows i386, x86_64 MSVCRT-???, MinGW??? Both MSVC and MinGW style environments
+AIX powerpc, powerpc64 ???-???
+=============== ========================= ====================== ============================
Generally speaking, libc++ should work on any platform that provides a fairly complete
C Standard Library. It is also possible to turn off parts of the library for use on
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D140343.484046.patch
Type: text/x-patch
Size: 1732 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20221219/59d4976c/attachment.bin>
More information about the libcxx-commits
mailing list