From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 501003858C36; Fri, 2 Jun 2023 06:54:49 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 501003858C36 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1685688889; bh=6s/NNVSfPKHCqVA4QTmT8rosmcyinJoT82xn1avc13M=; h=From:To:Subject:Date:From; b=d/fNXv9yi6JkwnKC2cPK4wHAB+DXJz6QioORY8gh6uO2NxQ0Cw8x78h8iiSxD4n/q l1OlniNEKO5hji2lXXNLE8sS2k66wVOxagEAqbLATyU+KWIL0sRk+TyC+gnpk6B5GW de1W5TB97c9vVjLdJDVoecdjSobP7AD8+scxJd30= From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/110085] New: make clean inside the gcc directory when configured with m2 language and for sh-elf messes up Date: Fri, 02 Jun 2023 06:54:48 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org 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: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: 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=3D110085 Bug ID: 110085 Summary: make clean inside the gcc directory when configured with m2 language and for sh-elf messes up Product: gcc Version: 14.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: bootstrap Assignee: unassigned at gcc dot gnu.org Reporter: pinskia at gcc dot gnu.org Target Milestone: --- make clean does: # Delete files used by the "multilib" facility (including libgcc subdirs). -rm -f multilib.h tmpmultilib* -if [ "x$(MULTILIB_DIRNAMES)" !=3D x ] ; then \ rm -rf $(MULTILIB_DIRNAMES); \ else if [ "x$(MULTILIB_OPTIONS)" !=3D x ] ; then \ rm -rf `echo $(MULTILIB_OPTIONS) | sed -e 's/\// /g'`; \ fi ; fi and one of the MULTILIB_DIRNAMES for sh-elf is m2 but m2 is also the name of the language. I think that part of the gcc/Makefile.in can be removed now (since libgcc is not built inside the gcc directory for years now) but I am not 100% sure.=