diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-11-07 22:49:25 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2017-11-07 22:49:25 +0000 |
commit | 5666f12bbaee553b39876ab1d9f5bb6d2c41303d (patch) | |
tree | 2a996e1e0fbae4c7ae3dfc7aa6a68b013622b0fe /gcc | |
parent | 4dbeb716123290202774ec5127462946bdfacbd1 (diff) | |
download | gcc-5666f12bbaee553b39876ab1d9f5bb6d2c41303d.zip gcc-5666f12bbaee553b39876ab1d9f5bb6d2c41303d.tar.gz gcc-5666f12bbaee553b39876ab1d9f5bb6d2c41303d.tar.bz2 |
[PATCH] Install cp/operators.def as part of plugin headers
https://gcc.gnu.org/ml/gcc-patches/2017-11/msg00498.html
2017-11-07 Boris Kolpackov <boris@codesynthesis.com>
* Make-lang.in (CP_PLUGIN_HEADERS): Add operators.def since included
in cp-tree.h.
From-SVN: r254512
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cp/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cp/Make-lang.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 52cd542..df912013 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2017-11-07 Boris Kolpackov <boris@codesynthesis.com> + + * Make-lang.in (CP_PLUGIN_HEADERS): Add operators.def since included + in cp-tree.h. + 2017-11-07 Jakub Jelinek <jakub@redhat.com> PR c++/82835 diff --git a/gcc/cp/Make-lang.in b/gcc/cp/Make-lang.in index a46845c..c852f6a 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 # # Define the names for selecting c++ in LANGUAGES. |