This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[PATCH] Add some more headers to PLUGIN_HEADERS (PR plugins/59335)
- From: Jakub Jelinek <jakub at redhat dot com>
- To: Richard Biener <rguenther at suse dot de>
- Cc: gcc-patches at gcc dot gnu dot org
- Date: Wed, 5 Mar 2014 15:00:33 +0100
- Subject: [PATCH] Add some more headers to PLUGIN_HEADERS (PR plugins/59335)
- Authentication-results: sourceware.org; auth=none
- Reply-to: Jakub Jelinek <jakub at redhat dot com>
Hi!
The PR requests beyond the already commited ones some further headers.
Tested with make install, ok for trunk?
2014-03-05 Jakub Jelinek <jakub@redhat.com>
PR plugins/59335
* Makefile.in (PLUGIN_HEADERS): Add tree-phinodes.h, stor-layout.h,
ssa-iterators.h, $(RESOURCE_H) and tree-cfgcleanup.h.
--- gcc/Makefile.in.jj 2014-02-06 11:54:55.000000000 +0100
+++ gcc/Makefile.in 2014-03-05 11:05:27.033215552 +0100
@@ -3124,7 +3124,8 @@ PLUGIN_HEADERS = $(TREE_H) $(CONFIG_H) $
$(IPA_PROP_H) $(TARGET_H) $(RTL_H) $(TM_P_H) $(CFGLOOP_H) $(EMIT_RTL_H) \
version.h stringpool.h gimplify.h gimple-iterator.h gimple-ssa.h \
fold-const.h tree-cfg.h tree-into-ssa.h tree-ssanames.h print-tree.h \
- varasm.h context.h
+ varasm.h context.h tree-phinodes.h stor-layout.h ssa-iterators.h \
+ $(RESOURCE_H) tree-cfgcleanup.h
# generate the 'build fragment' b-header-vars
s-header-vars: Makefile
Jakub