From patchwork Tue Nov 7 15:31:44 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Boris Kolpackov X-Patchwork-Id: 835341 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=gcc.gnu.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=gcc-patches-return-466157-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="St2pql9L"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3yWYM61Q6Tz9s7c for ; Wed, 8 Nov 2017 02:32:01 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; q=dns; s= default; b=fgnRGFRMqpYux21jlpXvfUg9eXT6qU4Xo+NhCf+c5y0fUhATLkwBw l+VnqwQIukdbepzFxPPbxeV0rgqONmvTqdftfHrjVmzxRMQSvG9tOKLKVKkPNI/V AdYyo8tlwp5cx/xwL8EE5Oc25U/mYLUFZVD0Eb1XU/h1HQ+qv7aX68= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; s= default; bh=9Ra1s/QwaN39mdItU04Utr9MlSY=; b=St2pql9Loac+NzGo7ChT JGjhEv3r9Lk4l0u3g+tCGbtJThB+aPyu7VMRbJ9U5hCVU5SXhdKIdNNpefG3lIOi C5mm+z9r+uY1eVcIofC6oWfAAw2GyF5fTeERW1FW/1lsYxL9Kot6C1ujpy3c12fT Bw9xtPiYb3hZR/DqpZt64lI= Received: (qmail 126875 invoked by alias); 7 Nov 2017 15:31:54 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 126865 invoked by uid 89); 7 Nov 2017 15:31:53 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-25.3 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RP_MATCHES_RCVD, SPF_HELO_PASS, SPF_PASS autolearn=ham version=3.3.2 spammy= X-HELO: codesynthesis.com Received: from codesynthesis.com (HELO codesynthesis.com) (142.44.161.217) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 07 Nov 2017 15:31:52 +0000 Received: from brak.codesynthesis.com (unknown [66.251.163.148]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by codesynthesis.com (Postfix) with ESMTPSA id D25535F29B; Tue, 7 Nov 2017 15:31:48 +0000 (UTC) Received: by brak.codesynthesis.com (Postfix, from userid 1000) id 635BF1A800E2; Tue, 7 Nov 2017 17:31:44 +0200 (SAST) Date: Tue, 7 Nov 2017 17:31:44 +0200 From: Boris Kolpackov To: gcc-patches@gcc.gnu.org Subject: [PATCH] Install cp/operators.def as part of plugin headers Message-ID: MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.24 (2015-08-30) Hi, cp/cp-tree.h now includes operators.def which means it has to be installed as part of the plugin headers. The below patch addresses this (copyright assignment is on file). Thanks, Boris gcc/cp/ChangeLog: 2017-11-07 Boris Kolpackov * Make-lang.in (CP_PLUGIN_HEADERS): Add operators.def since included in cp-tree.h. diff --git a/gcc/cp/Make-lang.in b/gcc/cp/Make-lang.in index a46845c0c53..c852f6a38b4 100644 --- a/gcc/cp/Make-lang.in +++ b/gcc/cp/Make-lang.in @@ -39,7 +39,7 @@ CXX_INSTALL_NAME := $(shell echo c++|sed '$(program_transform_name)') GXX_INSTALL_NAME := $(shell echo g++|sed '$(program_transform_name)') CXX_TARGET_INSTALL_NAME := $(target_noncanonical)-$(shell echo c++|sed '$(program_transform_name)') GXX_TARGET_INSTALL_NAME := $(target_noncanonical)-$(shell echo g++|sed '$(program_transform_name)') -CP_PLUGIN_HEADERS := cp-tree.h cxx-pretty-print.h name-lookup.h type-utils.h +CP_PLUGIN_HEADERS := cp-tree.h cxx-pretty-print.h name-lookup.h type-utils.h operators.def #^L # Define the names for selecting c++ in LANGUAGES.