2019-07-18 19:51:05 +08:00
|
|
|
=========================================
|
2022-02-02 15:29:29 +08:00
|
|
|
Libc++ 15.0.0 (In-Progress) Release Notes
|
2019-07-18 19:51:05 +08:00
|
|
|
=========================================
|
2018-09-06 22:46:22 +08:00
|
|
|
|
|
|
|
.. contents::
|
|
|
|
:local:
|
|
|
|
:depth: 2
|
|
|
|
|
2018-09-10 16:57:12 +08:00
|
|
|
Written by the `Libc++ Team <https://libcxx.llvm.org>`_
|
2018-09-06 22:46:22 +08:00
|
|
|
|
|
|
|
.. warning::
|
|
|
|
|
2022-02-02 15:29:29 +08:00
|
|
|
These are in-progress notes for the upcoming libc++ 15 release.
|
2018-09-06 22:46:22 +08:00
|
|
|
Release notes for previous releases can be found on
|
2018-09-10 16:57:12 +08:00
|
|
|
`the Download Page <https://releases.llvm.org/download.html>`_.
|
2018-09-06 22:46:22 +08:00
|
|
|
|
|
|
|
Introduction
|
|
|
|
============
|
|
|
|
|
|
|
|
This document contains the release notes for the libc++ C++ Standard Library,
|
2022-02-02 15:29:29 +08:00
|
|
|
part of the LLVM Compiler Infrastructure, release 15.0.0. Here we describe the
|
2018-09-06 22:46:22 +08:00
|
|
|
status of libc++ in some detail, including major improvements from the previous
|
|
|
|
release and new feature work. For the general LLVM release notes, see `the LLVM
|
2018-09-10 16:57:12 +08:00
|
|
|
documentation <https://llvm.org/docs/ReleaseNotes.html>`_. All LLVM releases may
|
|
|
|
be downloaded from the `LLVM releases web site <https://llvm.org/releases/>`_.
|
2018-09-06 22:46:22 +08:00
|
|
|
|
|
|
|
For more information about libc++, please see the `Libc++ Web Site
|
2018-09-10 16:57:12 +08:00
|
|
|
<https://libcxx.llvm.org>`_ or the `LLVM Web Site <https://llvm.org>`_.
|
2018-09-06 22:46:22 +08:00
|
|
|
|
2020-01-15 17:02:56 +08:00
|
|
|
Note that if you are reading this file from a Git checkout or the
|
2018-09-06 22:46:22 +08:00
|
|
|
main Libc++ web page, this document applies to the *next* release, not
|
|
|
|
the current one. To see the release notes for a specific release, please
|
2018-09-10 16:57:12 +08:00
|
|
|
see the `releases page <https://llvm.org/releases/>`_.
|
2018-09-06 22:46:22 +08:00
|
|
|
|
2022-02-02 15:29:29 +08:00
|
|
|
What's New in Libc++ 15.0.0?
|
2019-07-18 19:51:05 +08:00
|
|
|
============================
|
2018-09-06 22:46:22 +08:00
|
|
|
|
|
|
|
New Features
|
|
|
|
------------
|
|
|
|
|
2021-10-19 01:58:31 +08:00
|
|
|
API Changes
|
|
|
|
-----------
|
2021-06-10 02:26:34 +08:00
|
|
|
|
2022-02-08 03:52:17 +08:00
|
|
|
- The ``_LIBCPP_ABI_UNSTABLE`` macro has been removed in favour of setting
|
|
|
|
``_LIBCPP_ABI_VERSION=2``. This should not have any impact on users because
|
|
|
|
they were not supposed to set ``_LIBCPP_ABI_UNSTABLE`` manually, however we
|
|
|
|
still feel that it is worth mentioning in the release notes in case some users
|
|
|
|
had been doing it.
|
|
|
|
|
2021-10-29 03:38:02 +08:00
|
|
|
ABI Changes
|
|
|
|
-----------
|
|
|
|
|
2021-09-09 00:57:58 +08:00
|
|
|
- The ``_LIBCPP_ABI_USE_CXX03_NULLPTR_EMULATION`` macro controlling whether we use an
|
|
|
|
emulation for ``std::nullptr_t`` in C++03 mode has been removed. After this change,
|
|
|
|
``_LIBCPP_ABI_USE_CXX03_NULLPTR_EMULATION`` will not be honoured anymore and there
|
|
|
|
will be no way to opt back into the C++03 emulation of ``std::nullptr_t``.
|
|
|
|
|
2021-10-19 01:58:31 +08:00
|
|
|
Build System Changes
|
|
|
|
--------------------
|
2022-02-09 00:38:29 +08:00
|
|
|
|
|
|
|
- Support for standalone builds have been entirely removed from libc++, libc++abi and
|
|
|
|
libunwind. Please use :ref:`these instructions <build instructions>` for building
|
|
|
|
libc++, libc++abi and/or libunwind.
|