From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 188073858285; Wed, 28 Sep 2022 11:26:21 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 188073858285 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1664364382; bh=/33oXglYarQJ57NYKiEp/KOn0MvRMpnDbx37Mif4U/w=; h=From:To:Subject:Date:In-Reply-To:References:From; b=KhFM2ZPMsUnNgtGdXgzGsdsF0ubcPl8JYSCC4VwaosXZcEV0P+u3NW2XO6iP9hZ7D Tu5gWmDNU60lRv+KG8rANEm4eSDGv0qvJ2qIv6P6vs0BQb1tZbMwMVXPfABXZ9ivWF zztQYy+0ere5IjNuSVN2tSXfxHn/zzOwueo+jByM= 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:26:21 +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 #17 from Tobias Burnus --- (In reply to Tobias Burnus from comment #16) > ln -s include-fixed/$target $target/include-fixed That should have been: ln -s ../include-fixed/$target $target/include-fixed with that change, ./gcc/xgcc -v -B`pwd`/gcc foo.c works and shows: #include "..." search starts here: #include <...> search starts here: /tmp/tburnus-gcc-test/gcc/include /tmp/tburnus-gcc-test/gcc/powerpc64le-linux-gnu/include-fixed /tmp/tburnus-gcc-test/gcc/include-fixed /usr/local/include /usr/include/powerpc64le-linux-gnu /usr/include End of search list. ... # 30 "/usr/include/complex.h" 2 3 4 # 1 "/tmp/tburnus-gcc-test/gcc/powerpc64le-linux-gnu/include-fixed/bits/floatn.= h" 1 3 4 and when continuing the bootstrap build, it now successfully finished with Stage 1 and I am positive that it will also finish building Stage 2 + 3.=