2015-08-22 19:40:49 +00:00
|
|
|
.. _index:
|
|
|
|
|
|
|
|
=============================
|
|
|
|
"libc++" C++ Standard Library
|
|
|
|
=============================
|
|
|
|
|
|
|
|
Overview
|
|
|
|
========
|
|
|
|
|
2017-01-25 17:00:30 +00:00
|
|
|
libc++ is a new implementation of the C++ standard library, targeting C++11 and
|
|
|
|
above.
|
2015-08-22 19:40:49 +00:00
|
|
|
|
|
|
|
* Features and Goals
|
|
|
|
|
|
|
|
* Correctness as defined by the C++11 standard.
|
|
|
|
* Fast execution.
|
|
|
|
* Minimal memory use.
|
|
|
|
* Fast compile times.
|
|
|
|
* ABI compatibility with gcc's libstdc++ for some low-level features
|
|
|
|
such as exception objects, rtti and memory allocation.
|
|
|
|
* Extensive unit tests.
|
|
|
|
|
|
|
|
* Design and Implementation:
|
|
|
|
|
|
|
|
* Extensive unit tests
|
|
|
|
* Internal linker model can be dumped/read to textual format
|
|
|
|
* Additional linking features can be plugged in as "passes"
|
|
|
|
* OS specific and CPU specific code factored out
|
|
|
|
|
|
|
|
|
|
|
|
Getting Started with libc++
|
2021-07-06 15:47:29 -04:00
|
|
|
===========================
|
2015-08-22 19:40:49 +00:00
|
|
|
|
|
|
|
.. toctree::
|
2021-07-06 10:39:01 -04:00
|
|
|
:maxdepth: 1
|
2015-08-22 19:40:49 +00:00
|
|
|
|
2024-01-22 09:34:47 -05:00
|
|
|
ReleaseNotes
|
2015-08-22 19:40:49 +00:00
|
|
|
UsingLibcxx
|
|
|
|
BuildingLibcxx
|
|
|
|
TestingLibcxx
|
2020-12-02 08:52:35 +01:00
|
|
|
Contributing
|
2022-09-23 18:33:20 +02:00
|
|
|
ImplementationDefinedBehavior
|
2023-02-28 20:29:26 +01:00
|
|
|
Modules
|
2023-07-20 17:41:37 -07:00
|
|
|
Hardening
|
2023-05-07 19:50:41 +02:00
|
|
|
ReleaseProcedure
|
2021-07-06 09:46:29 -04:00
|
|
|
Status/Cxx14
|
|
|
|
Status/Cxx17
|
|
|
|
Status/Cxx20
|
2023-05-17 17:54:53 +02:00
|
|
|
Status/Cxx23
|
2023-05-20 12:38:57 +02:00
|
|
|
Status/Cxx2c
|
2021-07-06 09:46:29 -04:00
|
|
|
Status/Format
|
2023-03-09 14:14:43 +08:00
|
|
|
Status/Parallelism
|
2023-06-09 12:34:07 -07:00
|
|
|
Status/PSTL
|
2021-08-19 23:10:47 +00:00
|
|
|
Status/Ranges
|
|
|
|
Status/Spaceship
|
2024-07-20 15:50:05 +00:00
|
|
|
Status/SpecialMath
|
2022-01-06 23:12:55 +01:00
|
|
|
Status/Zip
|
2015-08-22 19:40:49 +00:00
|
|
|
|
2015-09-05 05:29:23 +00:00
|
|
|
|
2019-01-16 01:37:43 +00:00
|
|
|
.. toctree::
|
|
|
|
:hidden:
|
|
|
|
|
2020-11-19 14:22:28 -05:00
|
|
|
AddingNewCIJobs
|
2019-01-16 01:37:43 +00:00
|
|
|
FeatureTestMacroTable
|
|
|
|
|
2020-11-19 14:22:28 -05:00
|
|
|
|
2015-08-22 19:40:49 +00:00
|
|
|
Current Status
|
2021-07-06 15:47:29 -04:00
|
|
|
==============
|
2015-08-22 19:40:49 +00:00
|
|
|
|
2024-04-01 13:25:26 -04:00
|
|
|
libc++ has become the default C++ Standard Library implementation for many major platforms, including Apple's macOS,
|
|
|
|
iOS, watchOS, and tvOS, Google Search, the Android operating system, and FreeBSD. As a result, libc++ has an estimated
|
|
|
|
user base of over 1 billion daily active users.
|
|
|
|
|
|
|
|
Since its inception, libc++ has focused on delivering high performance, standards-conformance, and portability. It has
|
2024-07-06 16:52:45 +02:00
|
|
|
been extensively tested and optimized, making it robust and production ready. libc++ fully implements C++11 and C++14,
|
2024-04-01 13:25:26 -04:00
|
|
|
with C++17, C++20, C++23, and C++26 features being actively developed and making steady progress.
|
|
|
|
|
|
|
|
libc++ is continuously integrated and tested on a wide range of platforms and configurations, ensuring its reliability
|
|
|
|
and compatibility across various systems. The library's extensive test suite and rigorous quality assurance process have
|
|
|
|
made it a top choice for platform providers looking to offer their users a robust and efficient C++ Standard Library.
|
|
|
|
|
|
|
|
As an open-source project, libc++ benefits from a vibrant community of contributors who work together to improve the
|
|
|
|
library and add new features. This ongoing development and support ensure that libc++ remains at the forefront of
|
|
|
|
C++ standardization efforts and continues to meet the evolving needs of C++ developers worldwide.
|
|
|
|
|
|
|
|
|
|
|
|
History
|
|
|
|
-------
|
2015-08-22 19:40:49 +00:00
|
|
|
After its initial introduction, many people have asked "why start a new
|
|
|
|
library instead of contributing to an existing library?" (like Apache's
|
|
|
|
libstdcxx, GNU's libstdc++, STLport, etc). There are many contributing
|
|
|
|
reasons, but some of the major ones are:
|
|
|
|
|
2015-09-05 06:50:03 +00:00
|
|
|
* From years of experience (including having implemented the standard
|
|
|
|
library before), we've learned many things about implementing
|
|
|
|
the standard containers which require ABI breakage and fundamental changes
|
|
|
|
to how they are implemented. For example, it is generally accepted that
|
|
|
|
building std::string using the "short string optimization" instead of
|
|
|
|
using Copy On Write (COW) is a superior approach for multicore
|
|
|
|
machines (particularly in C++11, which has rvalue references). Breaking
|
|
|
|
ABI compatibility with old versions of the library was
|
|
|
|
determined to be critical to achieving the performance goals of
|
|
|
|
libc++.
|
|
|
|
|
|
|
|
* Mainline libstdc++ has switched to GPL3, a license which the developers
|
|
|
|
of libc++ cannot use. libstdc++ 4.2 (the last GPL2 version) could be
|
|
|
|
independently extended to support C++11, but this would be a fork of the
|
|
|
|
codebase (which is often seen as worse for a project than starting a new
|
|
|
|
independent one). Another problem with libstdc++ is that it is tightly
|
|
|
|
integrated with G++ development, tending to be tied fairly closely to the
|
|
|
|
matching version of G++.
|
|
|
|
|
|
|
|
* STLport and the Apache libstdcxx library are two other popular
|
|
|
|
candidates, but both lack C++11 support. Our experience (and the
|
|
|
|
experience of libstdc++ developers) is that adding support for C++11 (in
|
|
|
|
particular rvalue references and move-only types) requires changes to
|
|
|
|
almost every class and function, essentially amounting to a rewrite.
|
|
|
|
Faced with a rewrite, we decided to start from scratch and evaluate every
|
|
|
|
design decision from first principles based on experience.
|
|
|
|
Further, both projects are apparently abandoned: STLport 5.2.1 was
|
|
|
|
released in Oct'08, and STDCXX 4.2.1 in May'08.
|
2015-08-22 19:40:49 +00:00
|
|
|
|
2023-05-07 19:50:41 +02:00
|
|
|
..
|
|
|
|
LLVM RELEASE bump version
|
|
|
|
|
2022-08-04 18:31:03 +02:00
|
|
|
.. _SupportedPlatforms:
|
2015-08-22 19:40:49 +00:00
|
|
|
|
2021-07-06 15:47:29 -04:00
|
|
|
Platform and Compiler Support
|
|
|
|
=============================
|
2015-08-22 19:40:49 +00:00
|
|
|
|
2021-07-06 15:47:29 -04:00
|
|
|
Libc++ aims to support common compilers that implement the C++11 Standard. In order to strike a
|
|
|
|
good balance between stability for users and maintenance cost, testing coverage and development
|
|
|
|
velocity, libc++ drops support for older compilers as newer ones are released.
|
|
|
|
|
|
|
|
============ =============== ========================== =====================
|
|
|
|
Compiler Versions Restrictions Support policy
|
|
|
|
============ =============== ========================== =====================
|
2024-04-04 20:48:23 +02:00
|
|
|
Clang 17, 18, 19-git latest two stable releases per `LLVM's release page <https://releases.llvm.org>`_ and the development version
|
2023-09-25 09:46:01 -04:00
|
|
|
AppleClang 15 latest stable release per `Xcode's release page <https://developer.apple.com/documentation/xcode-release-notes>`_
|
2021-10-19 14:09:46 -04:00
|
|
|
Open XL 17.1 (AIX) latest stable release per `Open XL's documentation page <https://www.ibm.com/docs/en/openxl-c-and-cpp-aix>`_
|
2024-07-06 16:52:45 +02:00
|
|
|
GCC 14 In C++11 or later only latest stable release per `GCC's release page <https://gcc.gnu.org/releases.html>`_
|
2021-07-06 15:47:29 -04:00
|
|
|
============ =============== ========================== =====================
|
|
|
|
|
|
|
|
Libc++ also supports common platforms and architectures:
|
|
|
|
|
2023-11-29 09:56:20 -05:00
|
|
|
===================== ========================= ============================
|
|
|
|
Target platform Target architecture Notes
|
|
|
|
===================== ========================= ============================
|
|
|
|
macOS 10.13+ i386, x86_64, arm64
|
|
|
|
FreeBSD 12+ i386, x86_64, arm
|
|
|
|
Linux i386, x86_64, arm, arm64 Only glibc-2.24 and later and no other libc is officially supported
|
|
|
|
Android 5.0+ i386, x86_64, arm, arm64
|
|
|
|
Windows i386, x86_64 Both MSVC and MinGW style environments, ABI in MSVC environments is :doc:`unstable <DesignDocs/ABIVersioning>`
|
|
|
|
AIX 7.2TL5+ powerpc, powerpc64
|
2023-11-29 17:20:20 -05:00
|
|
|
Embedded (picolibc) arm
|
2023-11-29 09:56:20 -05:00
|
|
|
===================== ========================= ============================
|
2021-07-06 15:47:29 -04:00
|
|
|
|
|
|
|
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
|
|
|
|
systems that provide incomplete support.
|
|
|
|
|
|
|
|
However, libc++ aims to provide a high-quality implementation of the C++ Standard
|
|
|
|
Library, especially when it comes to correctness. As such, we aim to have test coverage
|
|
|
|
for all the platforms and compilers that we claim to support. If a platform or compiler
|
2021-07-13 14:24:51 +03:00
|
|
|
is not listed here, it is not officially supported. It may happen to work, and
|
|
|
|
in practice the library is known to work on some platforms not listed here, but
|
|
|
|
we don't make any guarantees. If you would like your compiler and/or platform
|
2021-08-17 10:52:12 -04:00
|
|
|
to be formally supported and listed here, please work with the libc++ team to set
|
|
|
|
up testing for your configuration.
|
2015-08-22 19:40:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
C++ Dialect Support
|
2021-07-06 15:47:29 -04:00
|
|
|
===================
|
2015-08-22 19:40:49 +00:00
|
|
|
|
|
|
|
* C++11 - Complete
|
2021-07-06 09:46:29 -04:00
|
|
|
* :ref:`C++14 - Complete <cxx14-status>`
|
|
|
|
* :ref:`C++17 - In Progress <cxx17-status>`
|
|
|
|
* :ref:`C++20 - In Progress <cxx20-status>`
|
2023-05-17 17:54:53 +02:00
|
|
|
* :ref:`C++23 - In Progress <cxx23-status>`
|
2023-05-20 12:38:57 +02:00
|
|
|
* :ref:`C++2c - In Progress <cxx2c-status>`
|
2019-01-16 01:37:43 +00:00
|
|
|
* :ref:`C++ Feature Test Macro Status <feature-status>`
|
2015-08-22 19:40:49 +00:00
|
|
|
|
2021-07-06 15:47:29 -04:00
|
|
|
|
2015-08-22 19:40:49 +00:00
|
|
|
Notes and Known Issues
|
2021-07-06 15:47:29 -04:00
|
|
|
======================
|
2015-08-22 19:40:49 +00:00
|
|
|
|
|
|
|
This list contains known issues with libc++
|
|
|
|
|
|
|
|
* Building libc++ with ``-fno-rtti`` is not supported. However
|
|
|
|
linking against it with ``-fno-rtti`` is supported.
|
|
|
|
|
|
|
|
|
2015-09-06 23:22:02 +00:00
|
|
|
A full list of currently open libc++ bugs can be `found here`__.
|
2015-08-22 19:40:49 +00:00
|
|
|
|
2022-01-10 08:33:14 -05:00
|
|
|
.. __: https://github.com/llvm/llvm-project/labels/libc%2B%2B
|
2015-08-22 19:40:49 +00:00
|
|
|
|
2021-07-06 15:47:29 -04:00
|
|
|
|
2015-08-22 19:40:49 +00:00
|
|
|
Design Documents
|
2021-07-06 15:47:29 -04:00
|
|
|
================
|
2015-08-22 19:40:49 +00:00
|
|
|
|
[libcxx] Capture configuration information when installing the libc++ headers
Summary:
Hi all,
This patch is a successor to D11963. However it has changed dramatically and I felt it would be best to start a new review thread.
Please read the design documentation added in this patch for a description of how it works.
Reviewers: mclow.lists, danalbert, jroelofs, EricWF
Subscribers: vkalintiris, rnk, ed, espositofulvio, asl, eugenis, cfe-commits
Differential Revision: http://reviews.llvm.org/D13407
llvm-svn: 250235
2015-10-13 22:12:02 +00:00
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 1
|
|
|
|
|
2015-10-14 00:22:05 +00:00
|
|
|
DesignDocs/ABIVersioning
|
2021-06-08 11:15:27 -04:00
|
|
|
DesignDocs/AtomicDesign
|
|
|
|
DesignDocs/CapturingConfigInfo
|
2019-06-11 14:48:40 +00:00
|
|
|
DesignDocs/ExperimentalFeatures
|
2019-06-11 22:53:49 +00:00
|
|
|
DesignDocs/ExtendedCXX03Support
|
2021-06-08 11:15:27 -04:00
|
|
|
DesignDocs/FeatureTestMacros
|
|
|
|
DesignDocs/FileTimeType
|
2022-08-20 10:34:26 +02:00
|
|
|
DesignDocs/HeaderRemovalPolicy
|
2024-03-29 19:33:46 +01:00
|
|
|
DesignDocs/NodiscardPolicy
|
2021-02-05 11:24:38 -08:00
|
|
|
DesignDocs/NoexceptPolicy
|
2023-05-03 15:25:19 -07:00
|
|
|
DesignDocs/PSTLIntegration
|
2021-06-08 11:15:27 -04:00
|
|
|
DesignDocs/ThreadingSupportAPI
|
|
|
|
DesignDocs/UniquePtrTrivialAbi
|
2021-11-16 15:48:59 -05:00
|
|
|
DesignDocs/UnspecifiedBehaviorRandomization
|
2021-06-08 11:15:27 -04:00
|
|
|
DesignDocs/VisibilityMacros
|
2022-09-23 18:33:20 +02:00
|
|
|
DesignDocs/TimeZone
|
[libcxx] Capture configuration information when installing the libc++ headers
Summary:
Hi all,
This patch is a successor to D11963. However it has changed dramatically and I felt it would be best to start a new review thread.
Please read the design documentation added in this patch for a description of how it works.
Reviewers: mclow.lists, danalbert, jroelofs, EricWF
Subscribers: vkalintiris, rnk, ed, espositofulvio, asl, eugenis, cfe-commits
Differential Revision: http://reviews.llvm.org/D13407
llvm-svn: 250235
2015-10-13 22:12:02 +00:00
|
|
|
|
2021-07-06 15:47:29 -04:00
|
|
|
|
2015-10-15 03:27:02 +00:00
|
|
|
Build Bots and Test Coverage
|
2021-07-06 15:47:29 -04:00
|
|
|
============================
|
2015-09-05 06:50:03 +00:00
|
|
|
|
2023-12-13 00:55:52 -05:00
|
|
|
* `Github Actions CI pipeline <https://github.com/llvm/llvm-project/actions/workflows/libcxx-build-and-test.yaml>`_
|
2020-11-19 14:22:28 -05:00
|
|
|
* `Buildkite CI pipeline <https://buildkite.com/llvm-project/libcxx-ci>`_
|
2022-11-18 12:55:15 +00:00
|
|
|
* `LLVM Buildbot Builders <https://lab.llvm.org/buildbot>`_
|
2020-11-19 14:22:28 -05:00
|
|
|
* :ref:`Adding New CI Jobs <AddingNewCIJobs>`
|
2015-09-05 06:50:03 +00:00
|
|
|
|
2021-07-06 15:47:29 -04:00
|
|
|
|
2015-08-22 19:40:49 +00:00
|
|
|
Getting Involved
|
|
|
|
================
|
|
|
|
|
2020-03-22 22:42:03 +01:00
|
|
|
First please review our `Developer's Policy <https://llvm.org/docs/DeveloperPolicy.html>`__
|
|
|
|
and `Getting started with LLVM <https://llvm.org/docs/GettingStarted.html>`__.
|
2015-08-22 19:40:49 +00:00
|
|
|
|
|
|
|
**Bug Reports**
|
|
|
|
|
|
|
|
If you think you've found a bug in libc++, please report it using
|
2022-01-09 14:40:10 -05:00
|
|
|
the `LLVM bug tracker`_. If you're not sure, you
|
2022-03-23 10:10:20 -04:00
|
|
|
can ask for support on the `libcxx forum`_ or on IRC.
|
2015-08-22 19:40:49 +00:00
|
|
|
|
|
|
|
**Patches**
|
|
|
|
|
2024-01-24 10:55:40 -05:00
|
|
|
If you want to contribute a patch to libc++, please start by reviewing our
|
|
|
|
:ref:`documentation about contributing <ContributingToLibcxx>`.
|
2015-08-22 19:40:49 +00:00
|
|
|
|
|
|
|
**Discussion and Questions**
|
|
|
|
|
2022-03-23 10:10:20 -04:00
|
|
|
Send discussions and questions to the `libcxx forum`_.
|
2015-08-22 19:40:49 +00:00
|
|
|
|
|
|
|
|
2015-09-05 06:50:03 +00:00
|
|
|
Quick Links
|
|
|
|
===========
|
2020-03-22 22:42:03 +01:00
|
|
|
* `LLVM Homepage <https://llvm.org/>`_
|
2015-09-06 23:09:54 +00:00
|
|
|
* `libc++abi Homepage <http://libcxxabi.llvm.org/>`_
|
2022-03-23 10:10:20 -04:00
|
|
|
* `LLVM Bug Tracker <https://github.com/llvm/llvm-project/labels/libc++/>`_
|
|
|
|
* `libcxx-commits Mailing List <http://lists.llvm.org/mailman/listinfo/libcxx-commits>`_
|
|
|
|
* `libcxx Forum <https://discourse.llvm.org/c/runtimes/libcxx/>`_
|
2021-02-01 12:54:21 +05:30
|
|
|
* `Browse libc++ Sources <https://github.com/llvm/llvm-project/tree/main/libcxx/>`_
|