From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTPS id D80063858C1F for ; Mon, 18 Sep 2023 13:01:44 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org D80063858C1F Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1695042104; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=iQ8Yoiq4IcXVkcWVVI0rCxnEtxNlqTGZvsA+2wyBYoI=; b=W+xo0kyj6xle20izoC9Kw3daZSnileQmYRfiM+vkvi6TnHyaexd3/QuCbTmfJAIjSoSlyW tSS30PYlG7sZZAGBFbx81YD3RkuKtllO1S0GXA5mI+yTRJJCi1JBXl6KrlPKTRMAREvoy1 z5328oliER/pTX9iTS/Cevx9s6oVEaI= Received: from mimecast-mx02.redhat.com (mx-ext.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-494-GHsGO6CUM2edZzX78YUsww-1; Mon, 18 Sep 2023 09:01:43 -0400 X-MC-Unique: GHsGO6CUM2edZzX78YUsww-1 Received: from smtp.corp.redhat.com (int-mx10.intmail.prod.int.rdu2.redhat.com [10.11.54.10]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 6FC843C025C2; Mon, 18 Sep 2023 13:01:42 +0000 (UTC) Received: from localhost (unknown [10.42.28.190]) by smtp.corp.redhat.com (Postfix) with ESMTP id 35E98492C37; Mon, 18 Sep 2023 13:01:42 +0000 (UTC) From: Jonathan Wakely To: gcc-patches@gcc.gnu.org, libstdc++@gcc.gnu.org Subject: [wwwdocs] Document libstdc++ changes in GCC 14 Date: Mon, 18 Sep 2023 14:01:33 +0100 Message-ID: <20230918130141.2460012-1-jwakely@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.10 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-11.8 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,KAM_NUMSUBJECT,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,SPF_HELO_NONE,SPF_NONE,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Pushed to wwwdocs. --- htdocs/gcc-14/changes.html | 48 +++++++++++++++++++++++++++++++++++++- 1 file changed, 47 insertions(+), 1 deletion(-) diff --git a/htdocs/gcc-14/changes.html b/htdocs/gcc-14/changes.html index eae25f1a..65382746 100644 --- a/htdocs/gcc-14/changes.html +++ b/htdocs/gcc-14/changes.html @@ -97,7 +97,53 @@ a work-in-progress.

- +

Runtime Library (libstdc++)

+ +
    +
  • + The libstdc++exp.a library now includes all the Filesystem TS + symbols from the libstdc++fs.a library. + The experimental symbols for the C++23 std::stacktrace class + are also in libstdc++exp.a, replacing the + libstdc++_libbacktrace.a library that GCC 13 provides. + This means that -lstdc++exp is the only library needed for + all experimental libstdc++ features. +
  • +
  • Improved experimental support for C++20, including: +
      +
    • std::chrono::parse.
    • +
    +
  • +
  • Improved experimental support for C++23, including: +
      +
    • The <stacktrace> header is supported by default. +
    • +
    • Formatters for std::thread::id and + std::stacktrace. +
    • +
    • Some range adaptors now support move-only types.
    • +
    +
  • +
  • Experimental support for C++26, including: +
      +
    • Native handles for filebuf, fstream, etc.
    • +
    • std::to_string now uses std::format.
    • +
    • Enhanced formatting of pointers with std::format.
    • +
    • Testable result types for <charconv> functions.
    • +
    +
  • +
  • Faster numeric conversions using std::to_string and + std::to_wstring. +
  • +
  • Updated parallel algorithms that are compatible with oneTBB.
  • +
  • std::numeric_limits<_Float32> and + std::numeric_limits<_Float64> are now defined + for all standard modes, not only for C++23. +
  • +
  • Using the std::setfill manipulator with + std::istream is deprecated. +
  • +
-- 2.41.0