diff options
author | Keith Seitz <keiths@redhat.com> | 2022-09-12 07:56:58 -0700 |
---|---|---|
committer | Keith Seitz <keiths@redhat.com> | 2022-09-29 10:00:13 -0700 |
commit | ee8cc2b3f2d121718165b1cab2f537bbf30cae89 (patch) | |
tree | 86f8ae09684d0b1ea916cf6562e4c1baea98fd2c /gdb/features/Makefile | |
parent | 55b0ce4403e29e5c5295bc26024281c62e10ca3c (diff) | |
download | gdb-ee8cc2b3f2d121718165b1cab2f537bbf30cae89.zip gdb-ee8cc2b3f2d121718165b1cab2f537bbf30cae89.tar.gz gdb-ee8cc2b3f2d121718165b1cab2f537bbf30cae89.tar.bz2 |
cleanup: Add missing feature/ XML files to Makefile
This patch adds some missing .xml files to features/Makefile so that when the
directory's C files are regenerated, all files are appropriately remade.
This has demonstrated that there have been several "misses" in regenerating
files in this directory. Namely, arm-secext.c and sparc{32,64}-solaris.c. For
the former case, there was what essentially amounts to a typo regarding the
create feature function's name. In the later case, this file has missed at least
one important update in July, 2020, when allocate_target_description was
changed to return a unique pointer.
Those corrections are included.
Diffstat (limited to 'gdb/features/Makefile')
-rw-r--r-- | gdb/features/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/features/Makefile b/gdb/features/Makefile index 4bc8596..1f2b896 100644 --- a/gdb/features/Makefile +++ b/gdb/features/Makefile @@ -108,6 +108,7 @@ XMLTOC = \ nds32.xml \ nios2.xml \ or1k.xml \ + or1k-linux.xml \ rs6000/powerpc-32.xml \ rs6000/powerpc-32l.xml \ rs6000/powerpc-403.xml \ @@ -164,6 +165,8 @@ XMLTOC = \ s390x-vx-linux64.xml \ s390-gs-linux64.xml \ s390x-gs-linux64.xml \ + sparc/sparc32-solaris.xml \ + sparc/sparc64-solaris.xml \ z80.xml TDESC_CFILES = $(patsubst %.xml,%.c,$(XMLTOC)) @@ -209,6 +212,7 @@ FEATURE_XMLFILES = aarch64-core.xml \ arm/arm-m-profile-mve.xml \ arm/arm-m-system.xml \ arm/arm-m-profile-with-fpa.xml \ + arm/arm-secext.xml \ arm/arm-tls.xml \ arm/arm-vfpv2.xml \ arm/arm-vfpv3.xml \ |