From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 866CF385735C; Tue, 4 Oct 2022 00:33:28 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 866CF385735C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1664843608; bh=304/VGMm4okJ8qlwMEMZblSt495n0iKtQ8gUNrR6VpE=; h=From:To:Subject:Date:In-Reply-To:References:From; b=XmOeTMjtflXZ40FN9GWERMe+qbC29Dha1q1zAEFMv8qnIzusKdEZ/xRNUseU+5e20 tnE5lh5u6494bj//mLjvHaUVq0GFVHudRN5QDsCIA/v274XfpI5z62APptGgZ6aFjt hzyP2AqXzk6QSoSK1j2CnLfLrMss9updbuOFmmz8= From: "ppalka at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/107136] [13 Regression] File cp/cp-trait.def file not installed for plugin suport Date: Tue, 04 Oct 2022 00:33:28 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: plugin X-Bugzilla-Severity: normal X-Bugzilla-Who: ppalka 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: 13.0 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=3D107136 --- Comment #5 from Patrick Palka --- Sorry for the breakage! (In reply to Andrew Pinski from comment #3) > This is most likely the fix but I don't have time to test it right now" > diff --git a/gcc/cp/Make-lang.in b/gcc/cp/Make-lang.in > index 38d8eeed1f0..aa84d6827be 100644 > --- a/gcc/cp/Make-lang.in > +++ b/gcc/cp/Make-lang.in > @@ -39,7 +39,7 @@ CXX_INSTALL_NAME :=3D $(shell echo c++|sed > '$(program_transform_name)') > GXX_INSTALL_NAME :=3D $(shell echo g++|sed '$(program_transform_name)') > CXX_TARGET_INSTALL_NAME :=3D $(target_noncanonical)-$(shell echo c++|sed > '$(program_transform_name)') > GXX_TARGET_INSTALL_NAME :=3D $(target_noncanonical)-$(shell echo g++|sed > '$(program_transform_name)') > -CP_PLUGIN_HEADERS :=3D cp-tree.h cxx-pretty-print.h name-lookup.h > type-utils.h operators.def > +CP_PLUGIN_HEADERS :=3D cp-tree.h cxx-pretty-print.h name-lookup.h > type-utils.h operators.def cp-trait.def >=20 > #^L > # Define the names for selecting c++ in LANGUAGES. Makes sense... Looks like a similar fix, r8-4412-g5666f12bbaee55, was needed for operators.def after r8-4257-gd6dd9d7f8efcf9 made us include it from cp-tree.h.=