From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 57471385701C; Wed, 19 Jul 2023 20:02:39 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 57471385701C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1689796959; bh=wb823tEa+UdUJeh9kSDg/6pPJDN3Z9xOtp1eTIYOiGY=; h=From:To:Subject:Date:In-Reply-To:References:From; b=hTskoFKLnV7LI/yf4F6mAjLgyOV7FNz0s47FlcDOFmrtT/fmXf0LCLgcJBBOoLuAz 9FnC/scLeqJF/MSr4KLB4mCXYwOrrcdEpjepNY+9dEOIhO7ntq145P5EwzMP9I4bPf AXKBGW8wLoshiOyK4CaynLl0jwSI55Q7MLkn12+Y= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug modula2/110284] [14 Regression] Bootstrap failures with m2 Date: Wed, 19 Jul 2023 20:02:39 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: modula2 X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: REOPENED X-Bugzilla-Resolution: X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: gaius at gcc dot gnu.org X-Bugzilla-Target-Milestone: 14.0 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=3D110284 --- Comment #15 from CVS Commits --- The master branch has been updated by Gaius Mulley : https://gcc.gnu.org/g:01f6e8b013237041adeac370f8d229aea6304591 commit r14-2654-g01f6e8b013237041adeac370f8d229aea6304591 Author: Gaius Mulley Date: Wed Jul 19 21:01:53 2023 +0100 PR modula2/110284 Make-lang-in m2flex.o and m2pp.o This patch moves the rule c-family/m2pp.o from Make-lang.in into Make-maintainer.in. It also adds m2/gm2-gcc/rtegraph.o and m2/gm2-compiler-boot/m2flex.o to m2_OBJS. The object m2/gm2-compiler-boot/m2flex.o is needed by cc1gm2 whereas m2/gm2-compiler/m2flex.o is required by m2/stage2/cc1gm2 (which is only built in maintainer to allow debugging via m2 sources rather than the translated to C++ sources). PR modula2/110284 * Make-lang.in (m2_OBJS): Add m2/gm2-gcc/rtegraph.o and m2/gm2-compiler-boot/m2flex.o. (c-family/m2pp.o): Remove. * Make-maintainer.in (c-family/m2pp.o): Add. Signed-off-by: Gaius Mulley =