diff options
author | Kevin Buettner <kevinb@redhat.com> | 2012-02-16 23:39:37 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2012-02-16 23:39:37 +0000 |
commit | e5586183183234f9e8102ca570dc7d1f267b2c24 (patch) | |
tree | fc12da0ecf5211c971dc4042ee9d7270c858d52b | |
parent | f95586a44d28c31728d034502ba80ea98cda3ab8 (diff) | |
download | gdb-e5586183183234f9e8102ca570dc7d1f267b2c24.zip gdb-e5586183183234f9e8102ca570dc7d1f267b2c24.tar.gz gdb-e5586183183234f9e8102ca570dc7d1f267b2c24.tar.bz2 |
* MAINTAINERS: Add rx to target ISA section.
* Makefile.in (ALL_TARGET_OBS): Add rx-tdep.o.
(ALLDEPFILES): Add rx-tdep.c.
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/MAINTAINERS | 2 | ||||
-rw-r--r-- | gdb/Makefile.in | 2 |
3 files changed, 10 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 77d2d7e..daa0a90 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2012-02-16 Kevin Buettner <kevinb@redhat.com> + + * MAINTAINERS: Add rx to target ISA section. + * Makefile.in (ALL_TARGET_OBS): Add rx-tdep.o. + (ALLDEPFILES): Add rx-tdep.c. + 2012-02-16 Tom Tromey <tromey@redhat.com> * symfile.c (symbol_file_add_main_1): Use inferior's diff --git a/gdb/MAINTAINERS b/gdb/MAINTAINERS index 508c0c9..98e3146 100644 --- a/gdb/MAINTAINERS +++ b/gdb/MAINTAINERS @@ -311,6 +311,8 @@ the native maintainer when resolving ABI issues. rl78 --target=rl78-elf ,-Werror + rx --target=rx-elf ,-Werror + s390 --target=s390-linux-gnu ,-Werror score --target=score-elf diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 59a9700..3e1b93c 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -557,6 +557,7 @@ ALL_TARGET_OBS = \ ppc-linux-tdep.o ppcnbsd-tdep.o ppcobsd-tdep.o ppc-sysv-tdep.o \ rl78-tdep.o \ rs6000-aix-tdep.o rs6000-tdep.o \ + rx-tdep.o \ s390-tdep.o \ score-tdep.o \ sh64-tdep.o sh-linux-tdep.o shnbsd-tdep.o sh-tdep.o \ @@ -1492,6 +1493,7 @@ ALLDEPFILES = \ dcache.c \ rl78-tdep.c \ rs6000-nat.c rs6000-tdep.c \ + rx-tdep.c \ s390-tdep.c s390-nat.c \ score-tdep.c \ ser-go32.c ser-pipe.c ser-tcp.c ser-mingw.c \ |