From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gnu.wildebeest.org (wildebeest.demon.nl [212.238.236.112]) by sourceware.org (Postfix) with ESMTPS id 778C73858401 for ; Wed, 22 Sep 2021 20:37:41 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 778C73858401 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=klomp.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=klomp.org Received: from reform (deer0x04.wildebeest.org [172.31.17.134]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by gnu.wildebeest.org (Postfix) with ESMTPSA id 26FE2300071F; Wed, 22 Sep 2021 22:37:38 +0200 (CEST) Received: by reform (Postfix, from userid 1000) id 440D22E82F0F; Wed, 22 Sep 2021 22:37:38 +0200 (CEST) Date: Wed, 22 Sep 2021 22:37:38 +0200 From: Mark Wielaard To: Thomas Schwinge Cc: gcc-rust@gcc.gnu.org Subject: Re: [PATCH] Fix byte char and byte string lexing code Message-ID: References: <20210921225430.166550-1-mark@klomp.org> <87k0j9ym7r.fsf@euler.schwinge.homeip.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <87k0j9ym7r.fsf@euler.schwinge.homeip.net> X-Spam-Status: No, score=-4.8 required=5.0 tests=BAYES_00, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, KAM_SHORT, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=no autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: gcc-rust@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: gcc-rust mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Sep 2021 20:37:42 -0000 Hi Thomas, On Wed, Sep 22, 2021 at 11:48:56AM +0200, Thomas Schwinge wrote: > That's . > [...] > That's . Ah, sorry, I don't really track the github issues and had missed those. But good to see the analysis matches. > Both these related to > "GCC '--enable-bootstrap' build". To make --enable-bootstrap possible (wow, that takes a long time...) you'll also need: https://gcc.gnu.org/pipermail/gcc-rust/2021-September/000178.html https://code.wildebeest.org/git/user/mjw/gccrs/commit/?h=rust-mangle-unreachable With this and that patch applied there are no more warnings building the rust frontend, so a --enable-bootstrap (-Werror) build completes successfully. > > https://code.wildebeest.org/git/user/mjw/gccrs/commit/?h=bytecharstring > > Thanks, that's now: > "Fix byte char and byte string lexing code". Thanks, Mark