diff options
author | Patrick Palka <ppalka@redhat.com> | 2022-10-04 12:23:46 -0400 |
---|---|---|
committer | Patrick Palka <ppalka@redhat.com> | 2022-10-04 12:23:46 -0400 |
commit | e87879a9f5c2869de177c4dde2172f277e81ef1a (patch) | |
tree | e224f9c146473b22788e19c36a6dbe6bb1eb9944 | |
parent | c1b0a767f04a8ccbaff2a7b71d5c817cdb469630 (diff) | |
download | gcc-e87879a9f5c2869de177c4dde2172f277e81ef1a.zip gcc-e87879a9f5c2869de177c4dde2172f277e81ef1a.tar.gz gcc-e87879a9f5c2869de177c4dde2172f277e81ef1a.tar.bz2 |
c++: install cp-trait.def as part of plugin headers [PR107136]
This is apparently needed since we include cp-trait.def from cp-tree.h
(in order to define the cp_trait_kind enum), as with operators.def.
PR c++/107136
gcc/cp/ChangeLog:
* Make-lang.in (CP_PLUGIN_HEADERS): Add cp-trait.def.
-rw-r--r-- | gcc/cp/Make-lang.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/Make-lang.in b/gcc/cp/Make-lang.in index 38d8eee..aa84d68 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 operators.def +CP_PLUGIN_HEADERS := cp-tree.h cxx-pretty-print.h name-lookup.h type-utils.h operators.def cp-trait.def # # Define the names for selecting c++ in LANGUAGES. |