From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 7AECB3851425; Mon, 21 Dec 2020 08:53:33 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 7AECB3851425 From: "hliu at amperecomputing dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/98318] libcody breaks DragonFly bootstrap Date: Mon, 21 Dec 2020 08:53:33 +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: 11.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: hliu at amperecomputing dot com X-Bugzilla-Status: UNCONFIRMED 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: cc 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: Mon, 21 Dec 2020 08:53:33 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D98318 Hao Liu changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |hliu at amperecomputing do= t com --- Comment #3 from Hao Liu --- We can reproduce the failure on CentOS. But Ubuntu can pass. This failure is related to following files and code: --- 1. gcc/Makefile.in CODYLIB =3D ../libcody/libcody.a BACKEND =3D libbackend.a main.o libcommon-target.a libcommon.a \ $(CPPLIB) $(CODYLIB) $(LIBDECNUMBER) 2. gcc/gcc/c/Make-lang.in cc1-checksum.c : build/genchecksum$(build_exeext) checksum-options \ $(C_OBJS) $(BACKEND) $(LIBDEPS)=20 --- It should have some dependence problems, as "libcody.a" must be ready before building cc1-checksum.c. But don't know how to fix this problem, as I'm not farmiliar with Makefile :(=