diff options
author | Andrew Pinski <quic_apinski@quicinc.com> | 2024-05-30 07:59:00 -0700 |
---|---|---|
committer | Andrew Pinski <quic_apinski@quicinc.com> | 2024-06-06 10:04:03 -0700 |
commit | 6e6471806d886bc052d3922d636d49aaf75d5d16 (patch) | |
tree | 0cc0cf2f745438054a658d5979b37b91f8ca20f0 | |
parent | 43530bc40b1d0465911e493e56a6631202ce85b1 (diff) | |
download | gcc-6e6471806d886bc052d3922d636d49aaf75d5d16.zip gcc-6e6471806d886bc052d3922d636d49aaf75d5d16.tar.gz gcc-6e6471806d886bc052d3922d636d49aaf75d5d16.tar.bz2 |
Plugins: Add label-text.h to CPPLIB_H so it will be installed [PR115288]
After r15-874-g9bda2c4c81b668, out of tree plugins won't compile
as the new libcpp header file label-text.h is not installed.
This adds the new header file to CPPLIB_H which is used for
the plugin headers to install.
Committed as obvious after a build and install and make sure
the new header file is installed.
gcc/ChangeLog:
PR plugins/115288
* Makefile.in (CPPLIB_H): Add label-text.h.
Signed-off-by: Andrew Pinski <quic_apinski@quicinc.com>
-rw-r--r-- | gcc/Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index c983b0c..f5adb64 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1038,6 +1038,7 @@ SYSTEM_H = system.h hwint.h $(srcdir)/../include/libiberty.h \ PREDICT_H = predict.h predict.def CPPLIB_H = $(srcdir)/../libcpp/include/line-map.h \ $(srcdir)/../libcpp/include/rich-location.h \ + $(srcdir)/../libcpp/include/label-text.h \ $(srcdir)/../libcpp/include/cpplib.h CODYLIB_H = $(srcdir)/../libcody/cody.hh INPUT_H = $(srcdir)/../libcpp/include/line-map.h input.h |