Use gdbpy_ref in py-value.c
[deliverable/binutils-gdb.git] / gdb / NEWS
index a5974053e45a4f0a71d11bbff7eb88cea609c704..b9768159cd2371471d2e91e814d6e4309f48db9b 100644 (file)
--- a/gdb/NEWS
+++ b/gdb/NEWS
 
 * Support for Java programs compiled with gcj has been removed.
 
+* User commands now accept an unlimited number of arguments.
+  Previously, only up to 10 was accepted.
+
+* The "eval" command now expands user-defined command arguments.
+
+  This makes it easier to process a variable number of arguments:
+
+   define mycommand
+     set $i = 0
+     while $i < $argc
+       eval "print $arg%d", $i
+       set $i = $i + 1
+     end
+   end
+
+* New native configurations
+
+FreeBSD/mips                   mips*-*-freebsd
+
+
 * New targets
 
 Synopsys ARC                   arc*-*-elf32
+FreeBSD/mips                   mips*-*-freebsd
 
 *** Changes in GDB 7.12
 
@@ -65,6 +86,13 @@ Synopsys ARC                 arc*-*-elf32
 * Fortran: Support structures with fields of dynamic types and 
   arrays of dynamic types.
 
+* The symbol dumping maintenance commands have new syntax.
+maint print symbols [-pc address] [--] [filename]
+maint print symbols [-objfile objfile] [-source source] [--] [filename]
+maint print psymbols [-objfile objfile] [-pc address] [--] [filename]
+maint print psymbols [-objfile objfile] [-source source] [--] [filename]
+maint print msymbols [-objfile objfile] [--] [filename]
+
 * GDB now supports multibit bitfields and enums in target register
   descriptions.
 
This page took 0.025594 seconds and 4 git commands to generate.