diff options
author | Pedro Alves <palves@redhat.com> | 2010-04-24 13:12:56 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2010-04-24 13:12:56 +0000 |
commit | ab38a727c990476872ac4995792fc0d38d922d7f (patch) | |
tree | 9005fd3fefc5d3ab38663bba14fcebf841041a64 /gdb/NEWS | |
parent | 9a83a5533e5c082e2555505e7290456e4eb6afcb (diff) | |
download | gdb-ab38a727c990476872ac4995792fc0d38d922d7f.zip gdb-ab38a727c990476872ac4995792fc0d38d922d7f.tar.gz gdb-ab38a727c990476872ac4995792fc0d38d922d7f.tar.bz2 |
* defs.h: Adjust comment.
* filesystem.h, filesystem.c: New files.
* Makefile.in (SFILES): Add filesystem.c.
(COMMON_OBS): Add filesystem.o.
* solib.c (solib_find): Handle DOS-based filesystems. Handle
different target and host path flavours.
* arm-symbian-tdep.c (arm_symbian_init_abi): Set
has_dos_based_file_system on the gdbarch.
* arm-wince-tdep.c (arm_wince_init_abi): Ditto.
* i386-cygwin-tdep.c (i386_cygwin_init_abi): Ditto.
* i386-tdep.c (i386_go32_init_abi): Ditto.
* gdbarch.sh (has_dos_based_file_system): New.
* gdbarch.h, gdbarch.c: Regenerate.
* NEWS: Mention improved support for remote targets with DOS-based
filesystems. Mention new `set/show target-file-system-kind'
commands.
gdb/doc/
* gdb.texinfo (Commands to specify files): Describe what how GDB
looks up DOS-based filesystem paths on the system root. Document
the new `set/show target-file-system-kind' commands.
Diffstat (limited to 'gdb/NEWS')
-rw-r--r-- | gdb/NEWS | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -51,8 +51,24 @@ qGetTIBAddr its argument, limiting the functions selected by the regex to those in the specified file. +* Support for remote debugging Windows and SymbianOS shared libraries + from Unix hosts has been improved. Non Windows GDB builds now can + understand target reported file names that follow MS-DOS based file + system semantics, such as file names that include drive letters and + use the backslash character as directory separator. This makes it + possible to transparently use the "set sysroot" and "set + solib-search-path" on Unix hosts to point as host copies of the + target's shared libraries. See the new command "set + target-file-system-kind" described below, and the "Commands to + specify files" section in the user manual for more information. + * New commands +set target-file-system-kind unix|dos-based|auto +show target-file-system-kind + Set or show the assumed file system kind for target reported file + names. + save breakpoints <filename> Save all current breakpoint definitions to a file suitable for use in a later debugging session. To read the saved breakpoint |