From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 707603858D3C; Wed, 1 Feb 2023 21:23:23 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 707603858D3C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1675286603; bh=+gDlNrI01FsLBF9sOUSMP+XIeFj9oP02xiJ4jAeYu3c=; h=From:To:Subject:Date:In-Reply-To:References:From; b=VswyKmpN9eFqnResDJUkA46g7vI3e5hiOom9ZXz7kqDnFyMoVaLnwMqISNUprM2xY sWZWKwX59HhlzuIcOHDZ8WuP3k6TUaGQMxBzY+BBauWhfXBmjENBBpIWhVJ3zh7Ws8 JLf8pfeM28Zn0Qgq4+Q4S+TS0RsOc7Moh61uYU9M= From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/104883] should define all std::errc enumerators Date: Wed, 01 Feb 2023 21:23:23 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 12.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: redi at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D104883 --- Comment #4 from Jonathan Wakely --- (In reply to Jonathan Wakely from comment #0) > Which causes errors when we rely on that being present, e.g. for AVR: >=20 > /home/jwakely/src/gcc/build-avr/avr/libstdc++-v3/include/charconv: In > function =E2=80=98std::to_chars_result std::__detail::__to_chars(char*, c= har*, _Tp, > int)=E2=80=99: > /home/jwakely/src/gcc/build-avr/avr/libstdc++-v3/include/charconv:132:28: > error: =E2=80=98value_too_large=E2=80=99 is not a member of =E2=80=98std:= :errc=E2=80=99; did you mean > =E2=80=98file_too_large=E2=80=99? > 132 | __res.ec =3D errc::value_too_large; > | ^~~~~~~~~~~~~~~ > | file_too_large This specific problem is now fixed for avr, but the general problem remains= .=