From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 485DB3858025; Thu, 27 May 2021 11:38:57 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 485DB3858025 From: "aldyh at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/100787] [12 Regression] Bootstrap failure caused by r12-1077 Date: Thu, 27 May 2021 11:38:57 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 12.0 X-Bugzilla-Keywords: build X-Bugzilla-Severity: blocker X-Bugzilla-Who: aldyh at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 12.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed 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: Thu, 27 May 2021 11:38:57 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D100787 Aldy Hernandez changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2021-05-27 Ever confirmed|0 |1 --- Comment #4 from Aldy Hernandez --- (In reply to Jakub Jelinek from comment #3) > I'm using > mkdir ~/hbin > cat > ~/hbin/as <<\END > #!/bin/sh > exec /usr/bin/as --32 "$@" > END > cat > ~/hbin/g++ <<\END > #!/bin/sh > exec /usr/bin/g++ -m32 "$@" > END > cat > ~/hbin/gcc <<\END > #!/bin/sh > exec /usr/bin/gcc -m32 "$@" > END > cat > ~/hbin/ld <<\END > #!/bin/sh > case "$*" in > --version) cat <<\EOF > GNU ld version 2.20.52.0.1-10.fc17 20100131 > Copyright 2012 Free Software Foundation, Inc. > This program is free software; you may redistribute it under the terms of > the GNU General Public License version 3 or (at your option) a later vers= ion. > This program has absolutely no warranty. > EOF > exit 0;; > esac > exec /usr/bin/ld -m elf_i386 -L /usr/lib/ "$@" > END > chmod 755 ~/hbin/{as,g++,gcc,ld} >=20 > and then use > PATH=3D~/hbin:$PATH i386 .../configure ... > PATH=3D~/hbin:$PATH i386 make ... > etc. That is DIS-GUST-ING! ...and also works, thanks :). Confirmed.=