From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2168) id 890D23858416; Fri, 17 Mar 2023 00:20:10 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 890D23858416 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1679012410; bh=kGKP3oY3nzi6NXlYTCoK9gXGlUeE6dFTnFqiWF8OgYw=; h=From:To:Subject:Date:From; b=dZPf2HJGSU1GV8YC2pUxdc5zEmP7bvuXT8hknhzOzt9jMz2YOFP3VPIJwz6OidlFl EtBQou0w10Ki/IKda+HSJnCluikkz4LQFC4IjmgT3Uox0glW9YUIztBL/l76cETOy8 0+8GM1LGpv7Sci+oj9YKtgWerPiWjrcICcx1Wvlw= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: GCC Administrator To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc r11-10582] Daily bump. X-Act-Checkin: gcc X-Git-Author: GCC Administrator X-Git-Refname: refs/heads/releases/gcc-11 X-Git-Oldrev: 05fa584bbb5534ec7a763a2d0e6d89cf251534f5 X-Git-Newrev: cd38f23836220e15ceec90d0ccce5edce432f0e7 Message-Id: <20230317002010.890D23858416@sourceware.org> Date: Fri, 17 Mar 2023 00:20:10 +0000 (GMT) List-Id: https://gcc.gnu.org/g:cd38f23836220e15ceec90d0ccce5edce432f0e7 commit r11-10582-gcd38f23836220e15ceec90d0ccce5edce432f0e7 Author: GCC Administrator Date: Fri Mar 17 00:19:30 2023 +0000 Daily bump. Diff: --- gcc/DATESTAMP | 2 +- libstdc++-v3/ChangeLog | 43 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+), 1 deletion(-) diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index b0f638be23e..348f4b8a133 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20230316 +20230317 diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index ad02e89f20c..52981606ee3 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,46 @@ +2023-03-16 Jonathan Wakely + + Backported from master: + 2023-02-02 Jonathan Wakely + + PR libstdc++/108636 + * include/bits/fs_path.h (path::path(string_view, _Type)) + (path::_Cmpt::_Cmpt(string_view, _Type, size_t)): Move inline + definitions to ... + * src/c++17/fs_path.cc: ... here. + * testsuite/27_io/filesystem/path/108636.cc: New test. + +2023-03-16 Jonathan Wakely + + * src/c++17/fs_ops.cc [AVR] (not_supported): Define as a macro + for function_not_supported. + * src/filesystem/ops-common.h [AVR] (ENOTSUP): Define as a macro + for ENOSYS. + +2023-03-16 Jonathan Wakely + + Backported from master: + 2023-02-01 Jonathan Wakely + + * src/c++11/random.cc (random_device::_M_fini): Do not try to + close the file handle if the target doesn't support the + /dev/random and /dev/urandom files. + +2023-03-16 Jonathan Wakely + + Backported from master: + 2023-02-01 Jonathan Wakely + + * config/os/generic/error_constants.h (errc::value_too_large) + [__AVR__]: Define. + * src/c++11/system_error.cc + (system_category::default_error_condition) [__AVR__]: Only match + recognize values equal to EDOM, ERANGE, ENOSYS and EINTR. + * src/c++17/fs_ops.cc (fs::current_path) [__AVR__]: Do not use + getcwd. + * src/filesystem/ops-common.h [__AVR__]: Do not use POSIX open, + close etc. + 2023-03-10 Thomas W Rodgers Backported from master: