diff options
author | Kevin Buettner <kevinb@redhat.com> | 2012-02-15 22:17:02 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2012-02-15 22:17:02 +0000 |
commit | a58b110ab4c200e5bf7c4415ab3be44f0d01b868 (patch) | |
tree | 3231c55fdaea03d3218e730804a35d5d8cbf7444 | |
parent | 4cb6da1cdd239a764f8a08f5aff0ab82ad270a7f (diff) | |
download | gdb-a58b110ab4c200e5bf7c4415ab3be44f0d01b868.zip gdb-a58b110ab4c200e5bf7c4415ab3be44f0d01b868.tar.gz gdb-a58b110ab4c200e5bf7c4415ab3be44f0d01b868.tar.bz2 |
* MAINTAINERS: Add rl78 to target ISA section.
* Makefile.in (ALL_TARGET_OBS): Add rl78-tdep.o.
(ALLDEPFILES): Add rl78-tdep.c.
* NEWS: Mention rl78 as a new target.
-rw-r--r-- | gdb/ChangeLog | 7 | ||||
-rw-r--r-- | gdb/MAINTAINERS | 2 | ||||
-rw-r--r-- | gdb/Makefile.in | 2 | ||||
-rw-r--r-- | gdb/NEWS | 4 |
4 files changed, 15 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b1a1847..e04135b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,10 @@ +2012-02-15 Kevin Buettner <kevinb@redhat.com> + + * MAINTAINERS: Add rl78 to target ISA section. + * Makefile.in (ALL_TARGET_OBS): Add rl78-tdep.o. + (ALLDEPFILES): Add rl78-tdep.c. + * NEWS: Mention rl78 as a new target. + 2012-02-15 Aleksandar Ristovski <aristovski@qnx.com> * frame.c (find_frame_sal): Initialize sal->pspace field from frame diff --git a/gdb/MAINTAINERS b/gdb/MAINTAINERS index 0cb0fbb..508c0c9 100644 --- a/gdb/MAINTAINERS +++ b/gdb/MAINTAINERS @@ -309,6 +309,8 @@ the native maintainer when resolving ABI issues. powerpc --target=powerpc-eabi ,-Werror + rl78 --target=rl78-elf ,-Werror + s390 --target=s390-linux-gnu ,-Werror score --target=score-elf diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 9f30a61..59a9700 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -555,6 +555,7 @@ ALL_TARGET_OBS = \ mt-tdep.o \ nto-tdep.o \ ppc-linux-tdep.o ppcnbsd-tdep.o ppcobsd-tdep.o ppc-sysv-tdep.o \ + rl78-tdep.o \ rs6000-aix-tdep.o rs6000-tdep.o \ s390-tdep.o \ score-tdep.o \ @@ -1489,6 +1490,7 @@ ALLDEPFILES = \ remote-m32r-sdi.c remote-mips.c \ remote-sim.c \ dcache.c \ + rl78-tdep.c \ rs6000-nat.c rs6000-tdep.c \ s390-tdep.c s390-nat.c \ score-tdep.c \ @@ -52,6 +52,10 @@ ** "enable count" can be used to auto-disable a breakpoint after several hits. +* New targets + +Renesas RL78 rl78-*-elf + *** Changes in GDB 7.4 * GDB now handles ambiguous linespecs more consistently; the existing |