Hans Wennborg | 003a998 | 2019-07-18 11:51:05 +0000 | [diff] [blame] | 1 | ========================================= |
Tom Stellard | 688b1e2 | 2022-02-01 23:29:29 -0800 | [diff] [blame] | 2 | Libc++ 15.0.0 (In-Progress) Release Notes |
Hans Wennborg | 003a998 | 2019-07-18 11:51:05 +0000 | [diff] [blame] | 3 | ========================================= |
Louis Dionne | 4222207 | 2018-09-06 14:46:22 +0000 | [diff] [blame] | 4 | |
| 5 | .. contents:: |
| 6 | :local: |
| 7 | :depth: 2 |
| 8 | |
Hans Wennborg | 3329a84 | 2018-09-10 08:57:12 +0000 | [diff] [blame] | 9 | Written by the `Libc++ Team <https://libcxx.llvm.org>`_ |
Louis Dionne | 4222207 | 2018-09-06 14:46:22 +0000 | [diff] [blame] | 10 | |
| 11 | .. warning:: |
| 12 | |
Tom Stellard | 688b1e2 | 2022-02-01 23:29:29 -0800 | [diff] [blame] | 13 | These are in-progress notes for the upcoming libc++ 15 release. |
Louis Dionne | 4222207 | 2018-09-06 14:46:22 +0000 | [diff] [blame] | 14 | Release notes for previous releases can be found on |
Hans Wennborg | 3329a84 | 2018-09-10 08:57:12 +0000 | [diff] [blame] | 15 | `the Download Page <https://releases.llvm.org/download.html>`_. |
Louis Dionne | 4222207 | 2018-09-06 14:46:22 +0000 | [diff] [blame] | 16 | |
| 17 | Introduction |
| 18 | ============ |
| 19 | |
| 20 | This document contains the release notes for the libc++ C++ Standard Library, |
Tom Stellard | 688b1e2 | 2022-02-01 23:29:29 -0800 | [diff] [blame] | 21 | part of the LLVM Compiler Infrastructure, release 15.0.0. Here we describe the |
Louis Dionne | 4222207 | 2018-09-06 14:46:22 +0000 | [diff] [blame] | 22 | status of libc++ in some detail, including major improvements from the previous |
| 23 | release and new feature work. For the general LLVM release notes, see `the LLVM |
Hans Wennborg | 3329a84 | 2018-09-10 08:57:12 +0000 | [diff] [blame] | 24 | documentation <https://llvm.org/docs/ReleaseNotes.html>`_. All LLVM releases may |
| 25 | be downloaded from the `LLVM releases web site <https://llvm.org/releases/>`_. |
Louis Dionne | 4222207 | 2018-09-06 14:46:22 +0000 | [diff] [blame] | 26 | |
| 27 | For more information about libc++, please see the `Libc++ Web Site |
Hans Wennborg | 3329a84 | 2018-09-10 08:57:12 +0000 | [diff] [blame] | 28 | <https://libcxx.llvm.org>`_ or the `LLVM Web Site <https://llvm.org>`_. |
Louis Dionne | 4222207 | 2018-09-06 14:46:22 +0000 | [diff] [blame] | 29 | |
Hans Wennborg | fc14f4e | 2020-01-15 10:02:56 +0100 | [diff] [blame] | 30 | Note that if you are reading this file from a Git checkout or the |
Louis Dionne | 4222207 | 2018-09-06 14:46:22 +0000 | [diff] [blame] | 31 | main Libc++ web page, this document applies to the *next* release, not |
| 32 | the current one. To see the release notes for a specific release, please |
Hans Wennborg | 3329a84 | 2018-09-10 08:57:12 +0000 | [diff] [blame] | 33 | see the `releases page <https://llvm.org/releases/>`_. |
Louis Dionne | 4222207 | 2018-09-06 14:46:22 +0000 | [diff] [blame] | 34 | |
Tom Stellard | 688b1e2 | 2022-02-01 23:29:29 -0800 | [diff] [blame] | 35 | What's New in Libc++ 15.0.0? |
Hans Wennborg | 003a998 | 2019-07-18 11:51:05 +0000 | [diff] [blame] | 36 | ============================ |
Louis Dionne | 4222207 | 2018-09-06 14:46:22 +0000 | [diff] [blame] | 37 | |
| 38 | New Features |
| 39 | ------------ |
| 40 | |
Louis Dionne | 14918c8 | 2021-10-18 13:58:31 -0400 | [diff] [blame] | 41 | API Changes |
| 42 | ----------- |
Mark de Wever | 494905b | 2021-06-09 20:26:34 +0200 | [diff] [blame] | 43 | |
Louis Dionne | 15b1cdf | 2022-02-07 14:52:17 -0500 | [diff] [blame] | 44 | - The ``_LIBCPP_ABI_UNSTABLE`` macro has been removed in favour of setting |
| 45 | ``_LIBCPP_ABI_VERSION=2``. This should not have any impact on users because |
| 46 | they were not supposed to set ``_LIBCPP_ABI_UNSTABLE`` manually, however we |
| 47 | still feel that it is worth mentioning in the release notes in case some users |
| 48 | had been doing it. |
| 49 | |
Joe Loser | 8fcb1d9 | 2021-10-28 15:38:02 -0400 | [diff] [blame] | 50 | ABI Changes |
| 51 | ----------- |
| 52 | |
Louis Dionne | 9bb7cf4 | 2021-09-08 12:57:58 -0400 | [diff] [blame] | 53 | - The ``_LIBCPP_ABI_USE_CXX03_NULLPTR_EMULATION`` macro controlling whether we use an |
| 54 | emulation for ``std::nullptr_t`` in C++03 mode has been removed. After this change, |
| 55 | ``_LIBCPP_ABI_USE_CXX03_NULLPTR_EMULATION`` will not be honoured anymore and there |
| 56 | will be no way to opt back into the C++03 emulation of ``std::nullptr_t``. |
| 57 | |
Louis Dionne | 14918c8 | 2021-10-18 13:58:31 -0400 | [diff] [blame] | 58 | Build System Changes |
| 59 | -------------------- |
Louis Dionne | 6e1a653 | 2022-02-08 11:38:29 -0500 | [diff] [blame] | 60 | |
| 61 | - Support for standalone builds have been entirely removed from libc++, libc++abi and |
| 62 | libunwind. Please use :ref:`these instructions <build instructions>` for building |
| 63 | libc++, libc++abi and/or libunwind. |