From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id CE50E3858C2D; Tue, 16 Aug 2022 06:02:42 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org CE50E3858C2D From: "slyfox at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/106624] [13 Regression] LTO plugin fails to build in parallel builds: xgcc: fatal error: cannot execute '/build/build/./prev-gcc/collect2': execv: Bad address since r13-2011-g53e3b2bf16a486 Date: Tue, 16 Aug 2022 06:02:42 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: slyfox at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: marxin 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 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Aug 2022 06:02:42 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D106624 --- Comment #7 from Sergei Trofimovich --- I'm using GNU make from https://git.savannah.gnu.org/cgit/make.git/commit/?id=3D621d3196fae94e9006a= 7e9c5ffdaf5ec209bf832 commit (from around 22 June, before FIFO support). On top of that I apply --shuffle=3Drandom by default: --- a/src/main.c +++ b/src/main.c @@ -1513,6 +1513,10 @@ main (int argc, char **argv, char **envp) arg_job_slots =3D env_slots; } + /* Set less conservative default. */ + if (! shuffle_mode) + shuffle_mode=3D xstrdup ("random"); + /* Handle shuffle mode argument. */ if (shuffle_mode) { But I think I also see crashes with GNU make-4.2.1. I don't yet see anything wrong with `lto: support --jobserver-style=3Dfifo = for recent GNU make` patch. I'll keep digging what's wrong with my environment.=