diff options
author | Richard Sandiford <richard.sandiford@arm.com> | 2022-09-29 11:32:50 +0100 |
---|---|---|
committer | Richard Sandiford <richard.sandiford@arm.com> | 2022-09-29 11:32:50 +0100 |
commit | c1e1fa054970a30844eb94d726b4954dcb8b9063 (patch) | |
tree | 6dc9818e89ed488dc78da6aa3713edeb35ffe7aa /gcc | |
parent | a5a9237e2a78a9854f1f87e63ef5619cf8ba7360 (diff) | |
download | gcc-c1e1fa054970a30844eb94d726b4954dcb8b9063.zip gcc-c1e1fa054970a30844eb94d726b4954dcb8b9063.tar.gz gcc-c1e1fa054970a30844eb94d726b4954dcb8b9063.tar.bz2 |
Add OPTIONS_H_EXTRA to GTFILES
I have a patch that adds a typedef to aarch64's <cpu>-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.
<cpu>-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.
Diffstat (limited to 'gcc')
-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 59b67d9..c1d0438 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 \ |