This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH 0/2] Delete the remaining ROM monitor targets


Patch #1 needs a NEWS review, patch #2 needs a GDB manual review.

I was going to push forward with a gnulib update today, but I stumbled
on:

 m32r-rom.o: In function `m32r_upload_command':
 /home/pedro/gdb/mygit/build-mingw/gdb/../../src/gdb/m32r-rom.c:467: undefined reference to `__imp_gethostname_used_without_requesting_gnulib_module_gethostname'
 collect2: error: ld returned 1 exit status

m32r-rom.c is the only file under gdb/ that references gethostname.
And it turns out that I had already proposed removing that file, for
another reason, see
https://sourceware.org/ml/gdb/2015-07/msg00011.html.

So this series deletes the remaining ROM monitor targets from the
tree, thus avoiding importing gnulib's gethostname for now.

Pedro Alves (2):
  Delete the remaining ROM monitor targets
  gdb manual: Remove references to deleted targets

 gdb/Makefile.in      |    3 +-
 gdb/NEWS             |    9 +
 gdb/configure.tgt    |   30 +-
 gdb/dbug-rom.c       |  176 ----
 gdb/dink32-rom.c     |  179 ----
 gdb/doc/gdb.texinfo  |  403 +--------
 gdb/dsrec.c          |  316 -------
 gdb/m32r-rom.c       |  634 -------------
 gdb/microblaze-rom.c |  192 ----
 gdb/monitor.c        | 2417 --------------------------------------------------
 gdb/monitor.h        |  261 ------
 gdb/ppcbug-rom.c     |  224 -----
 gdb/srec.h           |   35 -
 13 files changed, 29 insertions(+), 4850 deletions(-)
 delete mode 100644 gdb/dbug-rom.c
 delete mode 100644 gdb/dink32-rom.c
 delete mode 100644 gdb/dsrec.c
 delete mode 100644 gdb/m32r-rom.c
 delete mode 100644 gdb/microblaze-rom.c
 delete mode 100644 gdb/monitor.c
 delete mode 100644 gdb/monitor.h
 delete mode 100644 gdb/ppcbug-rom.c
 delete mode 100644 gdb/srec.h

-- 
1.9.3


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]