diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2020-06-17 14:42:53 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2020-06-17 14:42:53 -0400 |
commit | 7d458ea516b58c98214406859d57965879019215 (patch) | |
tree | 831d164c3e682d210d97e19e17a141b85e2ab1fc /gdb/features | |
parent | 3af96c0d99dedab49d2b82b730c74c27ce99bba4 (diff) | |
download | binutils-gdb-7d458ea516b58c98214406859d57965879019215.tar.gz |
gdb, gdbserver: remove ARM regdat files
This patch removes the leftover regformats .dat files for the arm
architecture. There are no longer relevant, since the arm architecture
has been converted to use feature-based target-descriptions. These .dat
files are used by GDBserver ports that still use static target
descriptions.
These .dat files are generated from corresponding .xml files in the
features directory. And since the corresponding .xml files for these
arm .dat files don't exist anymore, it is impossible to re-generated
them. If you delete these .dat files and type "make" in the features
directory, you'll get:
make: *** No rule to make target '../regformats/arm/arm-with-iwmmxt.dat', needed by 'all'. Stop.
So it removes the entries in the `WHICH` variable of
gdb/features/Makefile.
Finally, it removes the rule in gdbserver/Makefile to generate .cc files
from `../gdb/regformats/arm/%.dat`.
gdb/ChangeLog:
* features/Makefile (WHICH): Remove arm files.
* regformats/arm/arm-with-iwmmxt.dat: Remove.
* regformats/arm/arm-with-neon.dat: Remove.
* regformats/arm/arm-with-vfpv2.dat: Remove.
* regformats/arm/arm-with-vfpv3.dat: Remove.
gdbserver/ChangeLog:
* Makefile.in (%-generated.cc: ../gdb/regformats/arm/%.dat):
Remove.
Change-Id: I3b7d989c50e2cb92235c1f7c7071a26839d84c78
Diffstat (limited to 'gdb/features')
-rw-r--r-- | gdb/features/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gdb/features/Makefile b/gdb/features/Makefile index 2a409dde39a..f2dd279eb69 100644 --- a/gdb/features/Makefile +++ b/gdb/features/Makefile @@ -44,9 +44,7 @@ # make GDB=/path/to/gdb XMLTOC="xml files" FEATURE_XMLFILES="xml files" cfiles # List of .dat files to create in ../regformats/ -WHICH = arm/arm-with-iwmmxt arm/arm-with-vfpv2 arm/arm-with-vfpv3 \ - arm/arm-with-neon \ - mips-linux mips-dsp-linux \ +WHICH = mips-linux mips-dsp-linux \ microblaze-with-stack-protect \ mips64-linux mips64-dsp-linux \ nios2-linux \ |