From: Richard Sandiford Date: Thu, 29 Sep 2022 10:32:50 +0000 (+0100) Subject: Add OPTIONS_H_EXTRA to GTFILES X-Git-Tag: basepoints/gcc-14~4274 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c1e1fa054970a30844eb94d726b4954dcb8b9063;p=thirdparty%2Fgcc.git Add OPTIONS_H_EXTRA to GTFILES I have a patch that adds a typedef to aarch64's -opts.h. The typedef is used for a TargetVariable in the .opt file, which means that it is covered by PCH and so needs to be visible to gengtype. -opts.h is not included directly in tm.h, but indirectly by target headers (in this case aarch64.h). There was therefore nothing that caused it to be added to GTFILES. gcc/ * Makefile.in (GTFILES): Add OPTIONS_H_EXTRA. --- diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 59b67d994415..c1d04384399e 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -2661,6 +2661,7 @@ s-match: build/genmatch$(build_exeext) $(srcdir)/match.pd cfn-operators.pd GTFILES = $(CPPLIB_H) $(srcdir)/input.h $(srcdir)/coretypes.h \ $(host_xm_file_list) \ + $(OPTIONS_H_EXTRA) \ $(tm_file_list) $(HASHTAB_H) $(SPLAY_TREE_H) $(srcdir)/bitmap.h \ $(srcdir)/wide-int.h $(srcdir)/alias.h \ $(srcdir)/coverage.cc $(srcdir)/rtl.h \