From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id CA3DF3858C83; Wed, 28 Sep 2022 11:18:22 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org CA3DF3858C83 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1664363902; bh=iCTY27jmZeKxahxkxJEeOv/QbMLb1c29e9YOKR0yxfc=; h=From:To:Subject:Date:In-Reply-To:References:From; b=x2OozbFxA2ifOu7fi7B+CRxCuGSAqCRfWdgc7cyHn3vea/12m4smDKOcB7Uzkpl8b vvsdJL+/65N6E8d/45BwtPh09MGylryKM6S0GmyCP5LXPBpeL/ToLm2+h76qaxJXMH tILG91kNp2ex5pJlY1FXQHSPaAs4dNbLFe+bE5Pg= From: "burnus at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/107059] [13 regression] bootstrap failure after r13-2887-gb04208895fed34 Date: Wed, 28 Sep 2022 11:18:22 +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: burnus 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: --- 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=3D107059 --- Comment #16 from Tobias Burnus --- (In reply to Jakub Jelinek from comment #14) > ..., so I think we could do: > --- gcc/cppdefault.cc.jj 2022-01-18 11:58:59.411984500 +0100 > +++ gcc/cppdefault.cc 2022-09-28 12:11:47.923603783 +0200 It tried this now on ppc64le with Ubuntu 18.04.3 LTS (bionic) with glibc 2.27-3ubuntu1 and - because I have used it last - with --enable-multiarch. However, it still fails. According to strace, it searches: /tmp/tburnus-gcc-test/gcc/powerpc64le-unknown-linux-gnu/13.0.0/include-fixe= d/. /tmp/tburnus-gcc-test/gcc/powerpc64le-linux-gnu/include-fixed/. /tmp/tburnus-gcc-test/gcc/../lib/gcc/powerpc64le-unknown-linux-gnu/13.0.0/i= nclude-fixed/powerpc64le-linux-gnu but not /tmp/tburnus-gcc-test/gcc/include-fixed/powerpc64le-linux-gnu A solution would be target=3Dpowerpc64le-linux-gnu cd $BUILD/gcc if [[ -d include-fixed/$target ]]; then mkdir $target; ln -s include-fixed/$target $target/include-fixed fi or something similar in the fix-include machinery.=