From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2181) id CACC93858C5F; Thu, 11 May 2023 15:52:37 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org CACC93858C5F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1683820357; bh=wqt++sIkSUYaqdWOqWgp+X7QwVzVOBi0IpTtUkUFkFM=; h=To:Subject:Date:From:From; b=g/ymNqhL7w6xuTIx/TdcbhacX+/uMy7opN4rj7CPVOunQVedonm7WD72bBGT0tXTu HGWKHAqoDhHFaTm2WA+bVXG3ejIfXCVal6hLw2OOX/VQDHdcMgoPMZ5+xn+2ZsQUag ZwAsUK31FxfSk20uNOtGAIrbsHMHXPzYbv0K9qQc= To: gcc-cvs-wwwdocs@gcc.gnu.org Subject: gcc-wwwdocs branch master updated. c47e7251a822a5068249ba6eb875a1fbd3fecc8b X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: d1abca5195cfd15aad393ae35fe899f53a86ebb2 X-Git-Newrev: c47e7251a822a5068249ba6eb875a1fbd3fecc8b Message-Id: <20230511155237.CACC93858C5F@sourceware.org> Date: Thu, 11 May 2023 15:52:37 +0000 (GMT) From: Jonathan Wakely List-Id: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "gcc-wwwdocs". The branch, master has been updated via c47e7251a822a5068249ba6eb875a1fbd3fecc8b (commit) from d1abca5195cfd15aad393ae35fe899f53a86ebb2 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit c47e7251a822a5068249ba6eb875a1fbd3fecc8b Author: Jonathan Wakely Date: Thu May 11 14:06:31 2023 +0100 Document libstdc++ freestanding changes in gcc-13 diff --git a/htdocs/gcc-13/changes.html b/htdocs/gcc-13/changes.html index bd022ed2..39414e18 100644 --- a/htdocs/gcc-13/changes.html +++ b/htdocs/gcc-13/changes.html @@ -412,6 +412,20 @@ You may also want to check out our
  • Support for the <experimental/synchronized_value> header from v2 of the Concurrency Technical Specification.
  • +
  • Support for many previously unavailable features in freestanding mode, + thanks to Arsen Arsenović. For example, std::tuple is + now available for freestanding compilation. The freestanding subset + contains all the components made freestanding by + P1642, + but libstdc++ adds more components to the freestanding subset, + such as std::array and std::string_view. + Additionally, libstdc++ now respects the -ffreestanding + compiler option and so it is not necessary to build a separate + freestanding installation of libstdc++. Compiling with + -ffreestanding will restrict the available features to + the freestanding subset, even if libstdc++ was built as a full, hosted + implementation. +
  • ----------------------------------------------------------------------- Summary of changes: htdocs/gcc-13/changes.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) hooks/post-receive -- gcc-wwwdocs