gdb/
[platform/upstream/binutils.git] / gdb / NEWS
1                 What has changed in GDB?
2              (Organized release by release)
3
4 *** Changes since GDB 7.5
5
6 * The 'cd' command now defaults to using '~' (the home directory) if not
7   given an argument.
8
9 * New configure options
10
11 --enable-libmcheck/--disable-libmcheck
12   By default, development versions are built with -lmcheck on hosts
13   that support it, in order to help track memory corruption issues.
14   Release versions, on the other hand, are built without -lmcheck
15   by default.  The --enable-libmcheck/--disable-libmcheck configure
16   options allow the user to override that default.
17
18 * New commands (for set/show, see "New options" below)
19
20 maint info bfds
21   List the BFDs known to GDB.
22
23 * MI changes
24
25   ** Command parameter changes are now notified using new async record
26      "=cmd-param-changed".
27
28 *** Changes in GDB 7.5
29
30 * GDB now supports x32 ABI.  Visit <http://sites.google.com/site/x32abi/>
31   for more x32 ABI info.
32
33 * GDB now supports access to MIPS DSP registers on Linux targets.
34
35 * GDB now supports debugging microMIPS binaries.
36
37 * The "info os" command on GNU/Linux can now display information on
38   several new classes of objects managed by the operating system:
39     "info os procgroups" lists process groups
40     "info os files" lists file descriptors
41     "info os sockets" lists internet-domain sockets
42     "info os shm" lists shared-memory regions
43     "info os semaphores" lists semaphores
44     "info os msg" lists message queues
45     "info os modules" lists loaded kernel modules
46
47 * GDB now has support for SDT (Static Defined Tracing) probes.  Currently,
48   the only implemented backend is for SystemTap probes (<sys/sdt.h>).  You
49   can set a breakpoint using the new "-probe, "-pstap" or "-probe-stap"
50   options and inspect the probe arguments using the new $_probe_arg family
51   of convenience variables.  You can obtain more information about SystemTap
52   in <http://sourceware.org/systemtap/>.
53
54 * GDB now supports reversible debugging on ARM, it allows you to
55   debug basic ARM and THUMB instructions, and provides 
56   record/replay support.  
57
58 * The option "symbol-reloading" has been deleted as it is no longer used.
59
60 * Python scripting
61
62   ** GDB commands implemented in Python can now be put in command class
63      "gdb.COMMAND_USER".
64
65   ** The "maint set python print-stack on|off" is now deleted.
66
67   ** A new class, gdb.printing.FlagEnumerationPrinter, can be used to
68      apply "flag enum"-style pretty-printing to any enum.
69
70   ** gdb.lookup_symbol can now work when there is no current frame.
71
72   ** gdb.Symbol now has a 'line' attribute, holding the line number in
73      the source at which the symbol was defined.
74
75   ** gdb.Symbol now has the new attribute 'needs_frame' and the new
76      method 'value'.  The former indicates whether the symbol needs a
77      frame in order to compute its value, and the latter computes the
78      symbol's value.
79
80   ** A new method 'referenced_value' on gdb.Value objects which can
81      dereference pointer as well as C++ reference values.
82
83   ** New methods 'global_block' and 'static_block' on gdb.Symtab objects
84      which return the global and static blocks (as gdb.Block objects),
85      of the underlying symbol table, respectively.
86
87   ** New function gdb.find_pc_line which returns the gdb.Symtab_and_line
88      object associated with a PC value.
89
90   ** gdb.Symtab_and_line has new attribute 'last' which holds the end
91      of the address range occupied by code for the current source line.
92
93 * Go language support.
94   GDB now supports debugging programs written in the Go programming
95   language.
96
97 * GDBserver now supports stdio connections.
98   E.g. (gdb) target remote | ssh myhost gdbserver - hello
99
100 * The binary "gdbtui" can no longer be built or installed.
101   Use "gdb -tui" instead.
102
103 * GDB will now print "flag" enums specially.  A flag enum is one where
104   all the enumerator values have no bits in common when pairwise
105   "and"ed.  When printing a value whose type is a flag enum, GDB will
106   show all the constants, e.g., for enum E { ONE = 1, TWO = 2}:
107   (gdb) print (enum E) 3
108   $1 = (ONE | TWO)
109
110 * The filename part of a linespec will now match trailing components
111   of a source file name.  For example, "break gcc/expr.c:1000" will
112   now set a breakpoint in build/gcc/expr.c, but not
113   build/libcpp/expr.c.
114
115 * The "info proc" and "generate-core-file" commands will now also
116   work on remote targets connected to GDBserver on Linux.
117
118 * The command "info catch" has been removed.  It has been disabled
119   since December 2007.
120
121 * The "catch exception" and "catch assert" commands now accept
122   a condition at the end of the command, much like the "break"
123   command does. For instance:
124
125         (gdb) catch exception Constraint_Error if Barrier = True
126
127   Previously, it was possible to add a condition to such catchpoints,
128   but it had to be done as a second step, after the catchpoint had been
129   created, using the "condition" command.
130
131 * The "info static-tracepoint-marker" command will now also work on
132   native Linux targets with in-process agent.
133
134 * GDB can now set breakpoints on inlined functions.
135
136 * The .gdb_index section has been updated to include symbols for
137   inlined functions.  GDB will ignore older .gdb_index sections by
138   default, which could cause symbol files to be loaded more slowly
139   until their .gdb_index sections can be recreated.  The new command
140   "set use-deprecated-index-sections on" will cause GDB to use any older
141   .gdb_index sections it finds.  This will restore performance, but the
142   ability to set breakpoints on inlined functions will be lost in symbol
143   files with older .gdb_index sections.
144
145   The .gdb_index section has also been updated to record more information
146   about each symbol.  This speeds up the "info variables", "info functions"
147   and "info types" commands when used with programs having the .gdb_index
148   section, as well as speeding up debugging with shared libraries using
149   the .gdb_index section.
150
151 * Ada support for GDB/MI Variable Objects has been added.
152
153 * GDB can now support 'breakpoint always-inserted mode' in 'record'
154   target.
155
156 * MI changes
157
158   ** New command -info-os is the MI equivalent of "info os".
159
160   ** Output logs ("set logging" and related) now include MI output.
161
162 * New commands
163
164   ** "set use-deprecated-index-sections on|off"
165      "show use-deprecated-index-sections on|off"
166      Controls the use of deprecated .gdb_index sections.
167
168   ** "catch load" and "catch unload" can be used to stop when a shared
169      library is loaded or unloaded, respectively.
170
171   ** "enable count" can be used to auto-disable a breakpoint after
172      several hits.
173
174   ** "info vtbl" can be used to show the virtual method tables for
175      C++ and Java objects.
176
177   ** "explore" and its sub commands "explore value" and "explore type"
178      can be used to reccursively explore values and types of
179      expressions.  These commands are available only if GDB is
180      configured with '--with-python'.
181
182   ** "info auto-load" shows status of all kinds of auto-loaded files,
183      "info auto-load gdb-scripts" shows status of auto-loading GDB canned
184      sequences of commands files, "info auto-load python-scripts"
185      shows status of auto-loading Python script files,
186      "info auto-load local-gdbinit" shows status of loading init file
187      (.gdbinit) from current directory and "info auto-load libthread-db" shows
188      status of inferior specific thread debugging shared library loading.
189
190   ** "info auto-load-scripts", "set auto-load-scripts on|off"
191      and "show auto-load-scripts" commands have been deprecated, use their
192      "info auto-load python-scripts", "set auto-load python-scripts on|off"
193      and "show auto-load python-scripts" counterparts instead.
194
195   ** "dprintf location,format,args..." creates a dynamic printf, which
196      is basically a breakpoint that does a printf and immediately
197      resumes your program's execution, so it is like a printf that you
198      can insert dynamically at runtime instead of at compiletime.
199
200   ** "set print symbol"
201      "show print symbol"
202      Controls whether GDB attempts to display the symbol, if any,
203      corresponding to addresses it prints.  This defaults to "on", but
204      you can set it to "off" to restore GDB's previous behavior.
205
206 * Deprecated commands
207
208   ** For the Renesas Super-H architecture, the "regs" command has been
209      deprecated, and "info all-registers" should be used instead.
210
211 * New targets
212
213 Renesas RL78                    rl78-*-elf
214 HP OpenVMS ia64                 ia64-hp-openvms*
215
216 * GDBserver supports evaluation of breakpoint conditions.  When
217   support is advertised by GDBserver, GDB may be told to send the
218   breakpoint conditions in bytecode form to GDBserver.  GDBserver
219   will only report the breakpoint trigger to GDB when its condition
220   evaluates to true.
221
222 * New options
223
224 set mips compression
225 show mips compression
226   Select the compressed ISA encoding used in functions that have no symbol
227   information available.  The encoding can be set to either of:
228     mips16
229     micromips
230   and is updated automatically from ELF file flags if available.
231
232 set breakpoint condition-evaluation
233 show breakpoint condition-evaluation
234   Control whether breakpoint conditions are evaluated by GDB ("host") or by
235   GDBserver ("target").  Default option "auto" chooses the most efficient
236   available mode.
237   This option can improve debugger efficiency depending on the speed of the
238   target.
239
240 set auto-load off
241   Disable auto-loading globally.
242
243 show auto-load
244   Show auto-loading setting of all kinds of auto-loaded files.
245
246 set auto-load gdb-scripts on|off
247 show auto-load gdb-scripts
248   Control auto-loading of GDB canned sequences of commands files.
249
250 set auto-load python-scripts on|off
251 show auto-load python-scripts
252   Control auto-loading of Python script files.
253
254 set auto-load local-gdbinit on|off
255 show auto-load local-gdbinit
256   Control loading of init file (.gdbinit) from current directory.
257
258 set auto-load libthread-db on|off
259 show auto-load libthread-db
260   Control auto-loading of inferior specific thread debugging shared library.
261
262 set auto-load scripts-directory <dir1>[:<dir2>...]
263 show auto-load scripts-directory
264   Set a list of directories from which to load auto-loaded scripts.
265   Automatically loaded Python scripts and GDB scripts are located in one
266   of the directories listed by this option.
267   The delimiter (':' above) may differ according to the host platform.
268
269 set auto-load safe-path <dir1>[:<dir2>...]
270 show auto-load safe-path
271   Set a list of directories from which it is safe to auto-load files.
272   The delimiter (':' above) may differ according to the host platform.
273
274 set debug auto-load on|off
275 show debug auto-load
276   Control display of debugging info for auto-loading the files above.
277
278 set dprintf-style gdb|call|agent
279 show dprintf-style
280   Control the way in which a dynamic printf is performed; "gdb"
281   requests a GDB printf command, while "call" causes dprintf to call a
282   function in the inferior.  "agent" requests that the target agent
283   (such as GDBserver) do the printing.
284
285 set dprintf-function <expr>
286 show dprintf-function
287 set dprintf-channel <expr>
288 show dprintf-channel
289   Set the function and optional first argument to the call when using
290   the "call" style of dynamic printf.
291
292 set disconnected-dprintf on|off
293 show disconnected-dprintf
294   Control whether agent-style dynamic printfs continue to be in effect
295   after GDB disconnects.
296
297 * New configure options
298
299 --with-auto-load-dir
300   Configure default value for the 'set auto-load scripts-directory'
301   setting above.  It defaults to '$debugdir:$datadir/auto-load',
302   $debugdir representing global debugging info directories (available
303   via 'show debug-file-directory') and $datadir representing GDB's data
304   directory (available via 'show data-directory').
305
306 --with-auto-load-safe-path
307   Configure default value for the 'set auto-load safe-path' setting
308   above.  It defaults to the --with-auto-load-dir setting.
309
310 --without-auto-load-safe-path
311   Set 'set auto-load safe-path' to '/', effectively disabling this
312   security feature.
313
314 * New remote packets
315
316 z0/z1 conditional breakpoints extension
317
318   The z0/z1 breakpoint insertion packets have been extended to carry
319   a list of conditional expressions over to the remote stub depending on the
320   condition evaluation mode.  The use of this extension can be controlled
321   via the "set remote conditional-breakpoints-packet" command.
322
323 QProgramSignals:
324
325   Specify the signals which the remote stub may pass to the debugged
326   program without GDB involvement.
327
328 * New command line options
329
330 --init-command=FILE, -ix          Like --command, -x but execute it
331                                   before loading inferior.
332 --init-eval-command=COMMAND, -iex Like --eval-command=COMMAND, -ex but
333                                   execute it before loading inferior.
334
335 *** Changes in GDB 7.4
336
337 * GDB now handles ambiguous linespecs more consistently; the existing
338   FILE:LINE support has been expanded to other types of linespecs.  A
339   breakpoint will now be set on all matching locations in all
340   inferiors, and locations will be added or removed according to
341   inferior changes.
342
343 * GDB now allows you to skip uninteresting functions and files when
344   stepping with the "skip function" and "skip file" commands.
345
346 * GDB has two new commands: "set remote hardware-watchpoint-length-limit"
347   and "show remote hardware-watchpoint-length-limit".  These allows to
348   set or show the maximum length limit (in bytes) of a remote
349   target hardware watchpoint.
350
351   This allows e.g. to use "unlimited" hardware watchpoints with the
352   gdbserver integrated in Valgrind version >= 3.7.0.  Such Valgrind
353   watchpoints are slower than real hardware watchpoints but are
354   significantly faster than gdb software watchpoints.
355
356 * Python scripting
357
358   ** The register_pretty_printer function in module gdb.printing now takes
359      an optional `replace' argument.  If True, the new printer replaces any
360      existing one.
361
362   ** The "maint set python print-stack on|off" command has been
363      deprecated and will be deleted in GDB 7.5.
364      A new command: "set python print-stack none|full|message" has
365      replaced it.  Additionally, the default for "print-stack" is
366      now "message", which just prints the error message without
367      the stack trace.
368    
369   ** A prompt substitution hook (prompt_hook) is now available to the
370      Python API.
371
372   ** A new Python module, gdb.prompt has been added to the GDB Python
373      modules library.  This module provides functionality for
374      escape sequences in prompts (used by set/show
375      extended-prompt).  These escape sequences are replaced by their
376      corresponding value.
377
378   ** Python commands and convenience-functions located in
379     'data-directory'/python/gdb/command and
380     'data-directory'/python/gdb/function are now automatically loaded
381      on GDB start-up.
382
383   ** Blocks now provide four new attributes.  global_block and
384      static_block will return the global and static blocks
385      respectively.  is_static and is_global are boolean attributes
386      that indicate if the block is one of those two types.
387
388   ** Symbols now provide the "type" attribute, the type of the symbol.
389
390   ** The "gdb.breakpoint" function has been deprecated in favor of
391      "gdb.breakpoints".
392
393   ** A new class "gdb.FinishBreakpoint" is provided to catch the return
394      of a function.  This class is based on the "finish" command
395      available in the CLI. 
396
397   ** Type objects for struct and union types now allow access to
398      the fields using standard Python dictionary (mapping) methods.
399      For example, "some_type['myfield']" now works, as does
400      "some_type.items()".
401
402   ** A new event "gdb.new_objfile" has been added, triggered by loading a
403      new object file.
404
405   ** A new function, "deep_items" has been added to the gdb.types
406      module in the GDB Python modules library.  This function returns
407      an iterator over the fields of a struct or union type.  Unlike
408      the standard Python "iteritems" method, it will recursively traverse
409      any anonymous fields.
410
411 * MI changes
412
413   ** "*stopped" events can report several new "reason"s, such as
414      "solib-event".
415
416   ** Breakpoint changes are now notified using new async records, like
417      "=breakpoint-modified".
418
419   ** New command -ada-task-info.
420
421 * libthread-db-search-path now supports two special values: $sdir and $pdir.
422   $sdir specifies the default system locations of shared libraries.
423   $pdir specifies the directory where the libpthread used by the application
424   lives.
425
426   GDB no longer looks in $sdir and $pdir after it has searched the directories
427   mentioned in libthread-db-search-path.  If you want to search those
428   directories, they must be specified in libthread-db-search-path.
429   The default value of libthread-db-search-path on GNU/Linux and Solaris
430   systems is now "$sdir:$pdir".
431
432   $pdir is not supported by gdbserver, it is currently ignored.
433   $sdir is supported by gdbserver.
434
435 * New configure option --with-iconv-bin.
436   When using the internationalization support like the one in the GNU C
437   library, GDB will invoke the "iconv" program to get a list of supported
438   character sets.  If this program lives in a non-standard location, one can
439   use this option to specify where to find it.
440
441 * When natively debugging programs on PowerPC BookE processors running
442   a Linux kernel version 2.6.34 or later, GDB supports masked hardware
443   watchpoints, which specify a mask in addition to an address to watch.
444   The mask specifies that some bits of an address (the bits which are
445   reset in the mask) should be ignored when matching the address accessed
446   by the inferior against the watchpoint address.  See the "PowerPC Embedded"
447   section in the user manual for more details.
448
449 * The new option --once causes GDBserver to stop listening for connections once
450   the first connection is made.  The listening port used by GDBserver will
451   become available after that.
452
453 * New commands "info macros" and "alias" have been added.
454
455 * New function parameters suffix @entry specifies value of function parameter
456   at the time the function got called.  Entry values are available only since
457   gcc version 4.7.
458
459 * New commands
460
461 !SHELL COMMAND
462   "!" is now an alias of the "shell" command.
463   Note that no space is needed between "!" and SHELL COMMAND.
464
465 * Changed commands
466
467 watch EXPRESSION mask MASK_VALUE
468   The watch command now supports the mask argument which allows creation
469   of masked watchpoints, if the current architecture supports this feature.
470
471 info auto-load-scripts [REGEXP]
472   This command was formerly named "maintenance print section-scripts".
473   It is now generally useful and is no longer a maintenance-only command.
474
475 info macro [-all] [--] MACRO
476   The info macro command has new options `-all' and `--'.  The first for
477   printing all definitions of a macro.  The second for explicitly specifying
478   the end of arguments and the beginning of the macro name in case the macro
479   name starts with a hyphen.
480
481 collect[/s] EXPRESSIONS
482   The tracepoint collect command now takes an optional modifier "/s"
483   that directs it to dereference pointer-to-character types and
484   collect the bytes of memory up to a zero byte.  The behavior is
485   similar to what you see when you use the regular print command on a
486   string.  An optional integer following the "/s" sets a bound on the
487   number of bytes that will be collected.
488
489 tstart [NOTES]
490   The trace start command now interprets any supplied arguments as a
491   note to be recorded with the trace run, with an effect similar to
492   setting the variable trace-notes.
493
494 tstop [NOTES]
495   The trace stop command now interprets any arguments as a note to be
496   mentioned along with the tstatus report that the trace was stopped
497   with a command.  The effect is similar to setting the variable
498   trace-stop-notes.
499
500 * Tracepoints can now be enabled and disabled at any time after a trace
501   experiment has been started using the standard "enable" and "disable"
502   commands.  It is now possible to start a trace experiment with no enabled
503   tracepoints; GDB will display a warning, but will allow the experiment to
504   begin, assuming that tracepoints will be enabled as needed while the trace
505   is running.
506
507 * Fast tracepoints on 32-bit x86-architectures can now be placed at
508   locations with 4-byte instructions, when they were previously
509   limited to locations with instructions of 5 bytes or longer.
510
511 * New options
512
513 set debug dwarf2-read
514 show debug dwarf2-read
515   Turns on or off display of debugging messages related to reading
516   DWARF debug info.  The default is off.
517
518 set debug symtab-create
519 show debug symtab-create
520   Turns on or off display of debugging messages related to symbol table
521   creation.  The default is off.
522
523 set extended-prompt
524 show extended-prompt
525   Set the GDB prompt, and allow escape sequences to be inserted to
526   display miscellaneous information (see 'help set extended-prompt'
527   for the list of sequences).  This prompt (and any information
528   accessed through the escape sequences) is updated every time the
529   prompt is displayed.
530
531 set print entry-values (both|compact|default|if-needed|no|only|preferred)
532 show print entry-values
533   Set printing of frame argument values at function entry.  In some cases
534   GDB can determine the value of function argument which was passed by the
535   function caller, even if the value was modified inside the called function.
536
537 set debug entry-values
538 show debug entry-values
539   Control display of debugging info for determining frame argument values at
540   function entry and virtual tail call frames.
541
542 set basenames-may-differ
543 show basenames-may-differ
544   Set whether a source file may have multiple base names.
545   (A "base name" is the name of a file with the directory part removed.
546   Example: The base name of "/home/user/hello.c" is "hello.c".)
547   If set, GDB will canonicalize file names (e.g., expand symlinks)
548   before comparing them.  Canonicalization is an expensive operation,
549   but it allows the same file be known by more than one base name.
550   If not set (the default), all source files are assumed to have just
551   one base name, and gdb will do file name comparisons more efficiently.
552
553 set trace-user
554 show trace-user
555 set trace-notes
556 show trace-notes
557   Set a user name and notes for the current and any future trace runs.
558   This is useful for long-running and/or disconnected traces, to
559   inform others (or yourself) as to who is running the trace, supply
560   contact information, or otherwise explain what is going on.
561
562 set trace-stop-notes
563 show trace-stop-notes
564   Set a note attached to the trace run, that is displayed when the
565   trace has been stopped by a tstop command.  This is useful for
566   instance as an explanation, if you are stopping a trace run that was
567   started by someone else.
568
569 * New remote packets
570
571 QTEnable
572   
573   Dynamically enable a tracepoint in a started trace experiment.
574
575 QTDisable
576
577   Dynamically disable a tracepoint in a started trace experiment.
578
579 QTNotes
580
581   Set the user and notes of the trace run.
582
583 qTP
584
585   Query the current status of a tracepoint.
586
587 qTMinFTPILen
588
589   Query the minimum length of instruction at which a fast tracepoint may
590   be placed.
591
592 * Dcache size (number of lines) and line-size are now runtime-configurable
593   via "set dcache line" and "set dcache line-size" commands.
594
595 * New targets
596
597 Texas Instruments TMS320C6x             tic6x-*-*
598
599 * New Simulators
600
601 Renesas RL78                            rl78-*-elf
602
603 *** Changes in GDB 7.3.1
604
605 * The build failure for NetBSD and OpenBSD targets have now been fixed.
606
607 *** Changes in GDB 7.3
608
609 * GDB has a new command: "thread find [REGEXP]".
610   It finds the thread id whose name, target id, or thread extra info
611   matches the given regular expression.
612
613 * The "catch syscall" command now works on mips*-linux* targets.
614
615 * The -data-disassemble MI command now supports modes 2 and 3 for
616   dumping the instruction opcodes.
617
618 * New command line options
619
620 -data-directory DIR     Specify DIR as the "data-directory".
621                         This is mostly for testing purposes.
622
623 * The "maint set python auto-load on|off" command has been renamed to
624   "set auto-load-scripts on|off".
625
626 * GDB has a new command: "set directories".
627   It is like the "dir" command except that it replaces the
628   source path list instead of augmenting it.
629
630 * GDB now understands thread names.
631
632   On GNU/Linux, "info threads" will display the thread name as set by
633   prctl or pthread_setname_np.
634
635   There is also a new command, "thread name", which can be used to
636   assign a name internally for GDB to display.
637
638 * OpenCL C
639   Initial support for the OpenCL C language (http://www.khronos.org/opencl)
640   has been integrated into GDB.
641
642 * Python scripting
643
644   ** The function gdb.Write now accepts an optional keyword 'stream'.
645      This keyword, when provided, will direct the output to either
646      stdout, stderr, or GDB's logging output.
647
648   ** Parameters can now be be sub-classed in Python, and in particular
649      you may implement the get_set_doc and get_show_doc functions.
650      This improves how Parameter set/show documentation is processed
651      and allows for more dynamic content.
652
653   ** Symbols, Symbol Table, Symbol Table and Line, Object Files,
654      Inferior, Inferior Thread, Blocks, and Block Iterator APIs now
655      have an is_valid method.
656
657   ** Breakpoints can now be sub-classed in Python, and in particular
658      you may implement a 'stop' function that is executed each time
659      the inferior reaches that breakpoint.   
660
661   ** New function gdb.lookup_global_symbol looks up a global symbol.
662
663   ** GDB values in Python are now callable if the value represents a
664      function.  For example, if 'some_value' represents a function that
665      takes two integer parameters and returns a value, you can call
666      that function like so:
667
668      result = some_value (10,20)
669
670   ** Module gdb.types has been added.
671      It contains a collection of utilities for working with gdb.Types objects:
672      get_basic_type, has_field, make_enum_dict.
673
674   ** Module gdb.printing has been added.
675      It contains utilities for writing and registering pretty-printers.
676      New classes: PrettyPrinter,  SubPrettyPrinter,
677      RegexpCollectionPrettyPrinter.
678      New function: register_pretty_printer.
679
680   ** New commands "info pretty-printers", "enable pretty-printer" and
681      "disable pretty-printer" have been added.
682
683   ** gdb.parameter("directories") is now available.
684
685   ** New function gdb.newest_frame returns the newest frame in the
686      selected thread.
687
688   ** The gdb.InferiorThread class has a new "name" attribute.  This
689      holds the thread's name.
690
691   ** Python Support for Inferior events.
692      Python scripts can add observers to be notified of events
693      occurring in the process being debugged.
694      The following events are currently supported:
695      - gdb.events.cont Continue event.
696      - gdb.events.exited Inferior exited event.
697      - gdb.events.stop Signal received, and Breakpoint hit events.
698
699 * C++ Improvements:
700
701   ** GDB now puts template parameters in scope when debugging in an
702      instantiation.  For example, if you have:
703
704      template<int X> int func (void) { return X; }
705
706      then if you step into func<5>, "print X" will show "5".  This
707      feature requires proper debuginfo support from the compiler; it
708      was added to GCC 4.5.
709
710   ** The motion commands "next", "finish", "until", and "advance" now
711      work better when exceptions are thrown.  In particular, GDB will
712      no longer lose control of the inferior; instead, the GDB will
713      stop the inferior at the point at which the exception is caught.
714      This functionality requires a change in the exception handling
715      code that was introduced in GCC 4.5.
716
717 * GDB now follows GCC's rules on accessing volatile objects when
718   reading or writing target state during expression evaluation.
719   One notable difference to prior behavior is that "print x = 0"
720   no longer generates a read of x; the value of the assignment is
721   now always taken directly from the value being assigned.
722
723 * GDB now has some support for using labels in the program's source in
724   linespecs.  For instance, you can use "advance label" to continue
725   execution to a label.
726
727 * GDB now has support for reading and writing a new .gdb_index
728   section.  This section holds a fast index of DWARF debugging
729   information and can be used to greatly speed up GDB startup and
730   operation.  See the documentation for `save gdb-index' for details.
731
732 * The "watch" command now accepts an optional "-location" argument.
733   When used, this causes GDB to watch the memory referred to by the
734   expression.  Such a watchpoint is never deleted due to it going out
735   of scope.
736
737 * GDB now supports thread debugging of core dumps on GNU/Linux.
738
739   GDB now activates thread debugging using the libthread_db library
740   when debugging GNU/Linux core dumps, similarly to when debugging
741   live processes.  As a result, when debugging a core dump file, GDB
742   is now able to display pthread_t ids of threads.  For example, "info
743   threads" shows the same output as when debugging the process when it
744   was live.  In earlier releases, you'd see something like this:
745
746   (gdb) info threads
747    * 1 LWP 6780  main () at main.c:10
748
749   While now you see this:
750
751   (gdb) info threads
752    * 1 Thread 0x7f0f5712a700 (LWP 6780)  main () at main.c:10
753
754   It is also now possible to inspect TLS variables when debugging core
755   dumps.
756
757   When debugging a core dump generated on a machine other than the one
758   used to run GDB, you may need to point GDB at the correct
759   libthread_db library with the "set libthread-db-search-path"
760   command.  See the user manual for more details on this command.
761
762 * When natively debugging programs on PowerPC BookE processors running
763   a Linux kernel version 2.6.34 or later, GDB supports ranged breakpoints,
764   which stop execution of the inferior whenever it executes an instruction
765   at any address within the specified range.  See the "PowerPC Embedded"
766   section in the user manual for more details.
767
768 * New features in the GDB remote stub, GDBserver
769
770   ** GDBserver is now supported on PowerPC LynxOS (versions 4.x and 5.x),
771      and i686 LynxOS (version 5.x).
772
773   ** GDBserver is now supported on Blackfin Linux.
774
775 * New native configurations
776
777 ia64 HP-UX                      ia64-*-hpux*
778
779 * New targets:
780
781 Analog Devices, Inc. Blackfin Processor bfin-*
782
783 * Ada task switching is now supported on sparc-elf targets when
784   debugging a program using the Ravenscar Profile.  For more information,
785   see the "Tasking Support when using the Ravenscar Profile" section
786   in the GDB user manual.
787
788 * Guile support was removed.
789
790 * New features in the GNU simulator
791
792   ** The --map-info flag lists all known core mappings.
793
794   ** CFI flashes may be simulated via the "cfi" device.
795
796 *** Changes in GDB 7.2
797
798 * Shared library support for remote targets by default
799
800   When GDB is configured for a generic, non-OS specific target, like
801   for example, --target=arm-eabi or one of the many *-*-elf targets,
802   GDB now queries remote stubs for loaded shared libraries using the
803   `qXfer:libraries:read' packet.  Previously, shared library support
804   was always disabled for such configurations.
805
806 * C++ Improvements:
807
808   ** Argument Dependent Lookup (ADL)
809
810   In C++ ADL lookup directs function search to the namespaces of its
811   arguments even if the namespace has not been imported.
812   For example:
813     namespace A
814       { 
815         class B { }; 
816         void foo (B) { }
817       }
818     ...
819     A::B b
820     foo(b)
821   Here the compiler will search for `foo' in the namespace of 'b'
822   and find A::foo.  GDB now supports this.  This construct is commonly
823   used in the Standard Template Library for operators.
824
825   ** Improved User Defined Operator Support
826
827   In addition to member operators, GDB now supports lookup of operators
828   defined in a namespace and imported with a `using' directive, operators
829   defined in the global scope, operators imported implicitly from an
830   anonymous namespace, and the ADL operators mentioned in the previous
831   entry.
832   GDB now also supports proper overload resolution for all the previously
833   mentioned flavors of operators.
834
835   ** static const class members
836
837   Printing of static const class members that are initialized in the
838   class definition has been fixed.
839
840 * Windows Thread Information Block access.
841
842   On Windows targets, GDB now supports displaying the Windows Thread
843   Information Block (TIB) structure.  This structure is visible either
844   by using the new command `info w32 thread-information-block' or, by
845   dereferencing the new convenience variable named `$_tlb', a
846   thread-specific pointer to the TIB.  This feature is also supported
847   when remote debugging using GDBserver.
848
849 * Static tracepoints
850
851   Static tracepoints are calls in the user program into a tracing
852   library.  One such library is a port of the LTTng kernel tracer to
853   userspace --- UST (LTTng Userspace Tracer, http://lttng.org/ust).
854   When debugging with GDBserver, GDB now supports combining the GDB
855   tracepoint machinery with such libraries.  For example: the user can
856   use GDB to probe a static tracepoint marker (a call from the user
857   program into the tracing library) with the new "strace" command (see
858   "New commands" below).  This creates a "static tracepoint" in the
859   breakpoint list, that can be manipulated with the same feature set
860   as fast and regular tracepoints.  E.g., collect registers, local and
861   global variables, collect trace state variables, and define
862   tracepoint conditions.  In addition, the user can collect extra
863   static tracepoint marker specific data, by collecting the new
864   $_sdata internal variable.  When analyzing the trace buffer, you can
865   inspect $_sdata like any other variable available to GDB.  For more
866   information, see the "Tracepoints" chapter in GDB user manual.  New
867   remote packets have been defined to support static tracepoints, see
868   the "New remote packets" section below.
869
870 * Better reconstruction of tracepoints after disconnected tracing
871
872   GDB will attempt to download the original source form of tracepoint
873   definitions when starting a trace run, and then will upload these
874   upon reconnection to the target, resulting in a more accurate
875   reconstruction of the tracepoints that are in use on the target.
876
877 * Observer mode
878
879   You can now exercise direct control over the ways that GDB can
880   affect your program.  For instance, you can disallow the setting of
881   breakpoints, so that the program can run continuously (assuming
882   non-stop mode).  In addition, the "observer" variable is available
883   to switch all of the different controls; in observer mode, GDB
884   cannot affect the target's behavior at all, which is useful for
885   tasks like diagnosing live systems in the field.
886
887 * The new convenience variable $_thread holds the number of the
888   current thread.
889
890 * New remote packets
891
892 qGetTIBAddr
893
894   Return the address of the Windows Thread Information Block of a given thread.
895
896 qRelocInsn
897
898   In response to several of the tracepoint packets, the target may now
899   also respond with a number of intermediate `qRelocInsn' request
900   packets before the final result packet, to have GDB handle
901   relocating an instruction to execute at a different address.  This
902   is particularly useful for stubs that support fast tracepoints.  GDB
903   reports support for this feature in the qSupported packet.
904
905 qTfSTM, qTsSTM
906
907   List static tracepoint markers in the target program.
908
909 qTSTMat
910
911   List static tracepoint markers at a given address in the target
912   program.
913
914 qXfer:statictrace:read
915
916   Read the static trace data collected (by a `collect $_sdata'
917   tracepoint action).  The remote stub reports support for this packet
918   to gdb's qSupported query.
919
920 QAllow
921
922   Send the current settings of GDB's permission flags.
923
924 QTDPsrc
925
926   Send part of the source (textual) form of a tracepoint definition,
927   which includes location, conditional, and action list.
928
929 * The source command now accepts a -s option to force searching for the
930   script in the source search path even if the script name specifies
931   a directory.
932
933 * New features in the GDB remote stub, GDBserver
934
935   - GDBserver now support tracepoints (including fast tracepoints, and
936     static tracepoints).  The feature is currently supported by the
937     i386-linux and amd64-linux builds.  See the "Tracepoints support
938     in gdbserver" section in the manual for more information.
939
940     GDBserver JIT compiles the tracepoint's conditional agent
941     expression bytecode into native code whenever possible for low
942     overhead dynamic tracepoints conditionals.  For such tracepoints,
943     an expression that examines program state is evaluated when the
944     tracepoint is reached, in order to determine whether to capture
945     trace data.  If the condition is simple and false, processing the
946     tracepoint finishes very quickly and no data is gathered.
947
948     GDBserver interfaces with the UST (LTTng Userspace Tracer) library
949     for static tracepoints support.
950
951   - GDBserver now supports x86_64 Windows 64-bit debugging.
952
953 * GDB now sends xmlRegisters= in qSupported packet to indicate that
954   it understands register description.
955
956 * The --batch flag now disables pagination and queries.
957
958 * X86 general purpose registers
959
960   GDB now supports reading/writing byte, word and double-word x86
961   general purpose registers directly.  This means you can use, say,
962   $ah or $ax to refer, respectively, to the byte register AH and
963   16-bit word register AX that are actually portions of the 32-bit
964   register EAX or 64-bit register RAX.
965
966 * The `commands' command now accepts a range of breakpoints to modify.
967   A plain `commands' following a command that creates multiple
968   breakpoints affects all the breakpoints set by that command.  This
969   applies to breakpoints set by `rbreak', and also applies when a
970   single `break' command creates multiple breakpoints (e.g.,
971   breakpoints on overloaded c++ functions).
972
973 * The `rbreak' command now accepts a filename specification as part of
974   its argument, limiting the functions selected by the regex to those
975   in the specified file.
976
977 * Support for remote debugging Windows and SymbianOS shared libraries
978   from Unix hosts has been improved.  Non Windows GDB builds now can
979   understand target reported file names that follow MS-DOS based file
980   system semantics, such as file names that include drive letters and
981   use the backslash character as directory separator.  This makes it
982   possible to transparently use the "set sysroot" and "set
983   solib-search-path" on Unix hosts to point as host copies of the
984   target's shared libraries.  See the new command "set
985   target-file-system-kind" described below, and the "Commands to
986   specify files" section in the user manual for more information.
987
988 * New commands
989
990 eval template, expressions...
991   Convert the values of one or more expressions under the control
992   of the string template to a command line, and call it.
993
994 set target-file-system-kind unix|dos-based|auto
995 show target-file-system-kind
996   Set or show the assumed file system kind for target reported file
997   names.
998
999 save breakpoints <filename>
1000   Save all current breakpoint definitions to a file suitable for use
1001   in a later debugging session.  To read the saved breakpoint
1002   definitions, use the `source' command.
1003
1004 `save tracepoints' is a new alias for `save-tracepoints'.  The latter
1005 is now deprecated.
1006
1007 info static-tracepoint-markers
1008   Display information about static tracepoint markers in the target.
1009
1010 strace FN | FILE:LINE | *ADDR | -m MARKER_ID
1011   Define a static tracepoint by probing a marker at the given
1012   function, line, address, or marker ID.
1013
1014 set observer on|off
1015 show observer
1016   Enable and disable observer mode.
1017
1018 set may-write-registers on|off
1019 set may-write-memory on|off
1020 set may-insert-breakpoints on|off
1021 set may-insert-tracepoints on|off
1022 set may-insert-fast-tracepoints on|off
1023 set may-interrupt on|off
1024   Set individual permissions for GDB effects on the target.  Note that
1025   some of these settings can have undesirable or surprising
1026   consequences, particularly when changed in the middle of a session.
1027   For instance, disabling the writing of memory can prevent
1028   breakpoints from being inserted, cause single-stepping to fail, or
1029   even crash your program, if you disable after breakpoints have been
1030   inserted.  However, GDB should not crash.
1031
1032 set record memory-query on|off
1033 show record memory-query
1034   Control whether to stop the inferior if memory changes caused
1035   by an instruction cannot be recorded.
1036
1037 * Changed commands
1038
1039 disassemble
1040   The disassemble command now supports "start,+length" form of two arguments.
1041
1042 * Python scripting
1043
1044 ** GDB now provides a new directory location, called the python directory,
1045    where Python scripts written for GDB can be installed.  The location
1046    of that directory is <data-directory>/python, where <data-directory>
1047    is the GDB data directory.  For more details, see section `Scripting
1048    GDB using Python' in the manual.
1049
1050 ** The GDB Python API now has access to breakpoints, symbols, symbol
1051    tables, program spaces, inferiors, threads and frame's code blocks.
1052    Additionally, GDB Parameters can now be created from the API, and
1053    manipulated via set/show in the CLI.
1054
1055 ** New functions gdb.target_charset, gdb.target_wide_charset,
1056    gdb.progspaces, gdb.current_progspace, and gdb.string_to_argv.
1057
1058 ** New exception gdb.GdbError.
1059
1060 ** Pretty-printers are now also looked up in the current program space.
1061
1062 ** Pretty-printers can now be individually enabled and disabled.
1063
1064 ** GDB now looks for names of Python scripts to auto-load in a
1065    special section named `.debug_gdb_scripts', in addition to looking
1066    for a OBJFILE-gdb.py script when OBJFILE is read by the debugger.
1067
1068 * Tracepoint actions were unified with breakpoint commands. In particular,
1069 there are no longer differences in "info break" output for breakpoints and
1070 tracepoints and the "commands" command can be used for both tracepoints and
1071 regular breakpoints.
1072
1073 * New targets
1074
1075 ARM Symbian                     arm*-*-symbianelf*
1076
1077 * D language support.
1078   GDB now supports debugging programs written in the D programming
1079   language.
1080
1081 * GDB now supports the extended ptrace interface for PowerPC which is
1082   available since Linux kernel version 2.6.34.  This automatically enables
1083   any hardware breakpoints and additional hardware watchpoints available in
1084   the processor.  The old ptrace interface exposes just one hardware
1085   watchpoint and no hardware breakpoints.
1086
1087 * GDB is now able to use the Data Value Compare (DVC) register available on
1088   embedded PowerPC processors to implement in hardware simple watchpoint
1089   conditions of the form:
1090
1091   watch ADDRESS|VARIABLE if ADDRESS|VARIABLE == CONSTANT EXPRESSION
1092
1093   This works in native GDB running on Linux kernels with the extended ptrace
1094   interface mentioned above.
1095
1096 *** Changes in GDB 7.1
1097
1098 * C++ Improvements
1099
1100   ** Namespace Support
1101
1102   GDB now supports importing of namespaces in C++.  This enables the
1103   user to inspect variables from imported namespaces.  Support for
1104   namepace aliasing has also been added.  So, if a namespace is 
1105   aliased in the current scope (e.g. namepace C=A; ) the user can 
1106   print variables using the alias (e.g. (gdb) print C::x).
1107
1108   ** Bug Fixes
1109
1110   All known bugs relating to the printing of virtual base class were
1111   fixed.  It is now possible to call overloaded static methods using a
1112   qualified name.
1113
1114   ** Cast Operators
1115
1116   The C++ cast operators static_cast<>, dynamic_cast<>, const_cast<>,
1117   and reinterpret_cast<> are now handled by the C++ expression parser.
1118
1119 * New targets
1120
1121 Xilinx MicroBlaze               microblaze-*-*
1122 Renesas RX                      rx-*-elf
1123
1124 * New Simulators
1125
1126 Xilinx MicroBlaze               microblaze
1127 Renesas RX                      rx
1128
1129 * Multi-program debugging.
1130
1131   GDB now has support for multi-program (a.k.a. multi-executable or
1132   multi-exec) debugging.  This allows for debugging multiple inferiors
1133   simultaneously each running a different program under the same GDB
1134   session.  See "Debugging Multiple Inferiors and Programs" in the
1135   manual for more information.  This implied some user visible changes
1136   in the multi-inferior support.  For example, "info inferiors" now
1137   lists inferiors that are not running yet or that have exited
1138   already.  See also "New commands" and "New options" below.
1139
1140 * New tracing features
1141
1142   GDB's tracepoint facility now includes several new features:
1143
1144   ** Trace state variables
1145
1146   GDB tracepoints now include support for trace state variables, which
1147   are variables managed by the target agent during a tracing
1148   experiment.  They are useful for tracepoints that trigger each
1149   other, so for instance one tracepoint can count hits in a variable,
1150   and then a second tracepoint has a condition that is true when the
1151   count reaches a particular value.  Trace state variables share the
1152   $-syntax of GDB convenience variables, and can appear in both
1153   tracepoint actions and condition expressions.  Use the "tvariable"
1154   command to create, and "info tvariables" to view; see "Trace State
1155   Variables" in the manual for more detail.
1156
1157   ** Fast tracepoints
1158
1159   GDB now includes an option for defining fast tracepoints, which
1160   targets may implement more efficiently, such as by installing a jump
1161   into the target agent rather than a trap instruction.  The resulting
1162   speedup can be by two orders of magnitude or more, although the
1163   tradeoff is that some program locations on some target architectures
1164   might not allow fast tracepoint installation, for instance if the
1165   instruction to be replaced is shorter than the jump.  To request a
1166   fast tracepoint, use the "ftrace" command, with syntax identical to
1167   the regular trace command.
1168
1169   ** Disconnected tracing
1170
1171   It is now possible to detach GDB from the target while it is running
1172   a trace experiment, then reconnect later to see how the experiment
1173   is going.  In addition, a new variable disconnected-tracing lets you
1174   tell the target agent whether to continue running a trace if the
1175   connection is lost unexpectedly.
1176
1177   ** Trace files
1178
1179   GDB now has the ability to save the trace buffer into a file, and
1180   then use that file as a target, similarly to you can do with
1181   corefiles.  You can select trace frames, print data that was
1182   collected in them, and use tstatus to display the state of the
1183   tracing run at the moment that it was saved.  To create a trace
1184   file, use "tsave <filename>", and to use it, do "target tfile
1185   <name>".
1186
1187   ** Circular trace buffer
1188
1189   You can ask the target agent to handle the trace buffer as a
1190   circular buffer, discarding the oldest trace frames to make room for
1191   newer ones, by setting circular-trace-buffer to on.  This feature may
1192   not be available for all target agents.
1193
1194 * Changed commands
1195
1196 disassemble
1197   The disassemble command, when invoked with two arguments, now requires
1198   the arguments to be comma-separated.
1199
1200 info variables
1201   The info variables command now displays variable definitions.  Files
1202   which only declare a variable are not shown.
1203
1204 source
1205   The source command is now capable of sourcing Python scripts.
1206   This feature is dependent on the debugger being build with Python
1207   support.
1208
1209   Related to this enhancement is also the introduction of a new command
1210   "set script-extension" (see below).
1211
1212 * New commands (for set/show, see "New options" below)
1213
1214 record save [<FILENAME>]
1215   Save a file (in core file format) containing the process record 
1216   execution log for replay debugging at a later time.
1217
1218 record restore <FILENAME>
1219   Restore the process record execution log that was saved at an
1220   earlier time, for replay debugging.
1221
1222 add-inferior [-copies <N>] [-exec <FILENAME>]
1223   Add a new inferior.
1224
1225 clone-inferior [-copies <N>] [ID]
1226   Make a new inferior ready to execute the same program another
1227   inferior has loaded.
1228
1229 remove-inferior ID
1230   Remove an inferior.
1231
1232 maint info program-spaces
1233   List the program spaces loaded into GDB.
1234
1235 set remote interrupt-sequence [Ctrl-C | BREAK | BREAK-g]
1236 show remote interrupt-sequence
1237   Allow the user to select one of ^C, a BREAK signal or BREAK-g
1238   as the sequence to the remote target in order to interrupt the execution.
1239   Ctrl-C is a default.  Some system prefers BREAK which is high level of
1240   serial line for some certain time.  Linux kernel prefers BREAK-g, a.k.a
1241   Magic SysRq g.  It is BREAK signal and character 'g'.
1242
1243 set remote interrupt-on-connect [on | off]
1244 show remote interrupt-on-connect
1245   When interrupt-on-connect is ON, gdb sends interrupt-sequence to
1246   remote target when gdb connects to it.  This is needed when you debug
1247   Linux kernel.
1248
1249 set remotebreak [on | off]
1250 show remotebreak
1251 Deprecated.  Use "set/show remote interrupt-sequence" instead.
1252
1253 tvariable $NAME [ = EXP ]
1254   Create or modify a trace state variable.
1255
1256 info tvariables
1257   List trace state variables and their values.
1258
1259 delete tvariable $NAME ...
1260   Delete one or more trace state variables.
1261
1262 teval EXPR, ...
1263   Evaluate the given expressions without collecting anything into the
1264   trace buffer. (Valid in tracepoint actions only.)
1265
1266 ftrace FN / FILE:LINE / *ADDR
1267   Define a fast tracepoint at the given function, line, or address.
1268
1269 * New expression syntax
1270
1271   GDB now parses the 0b prefix of binary numbers the same way as GCC does.
1272   GDB now parses 0b101010 identically with 42.
1273
1274 * New options
1275
1276 set follow-exec-mode new|same
1277 show follow-exec-mode
1278   Control whether GDB reuses the same inferior across an exec call or
1279   creates a new one.  This is useful to be able to restart the old
1280   executable after the inferior having done an exec call.
1281
1282 set default-collect EXPR, ...
1283 show default-collect
1284    Define a list of expressions to be collected at each tracepoint.
1285    This is a useful way to ensure essential items are not overlooked,
1286    such as registers or a critical global variable.
1287
1288 set disconnected-tracing
1289 show disconnected-tracing
1290    If set to 1, the target is instructed to continue tracing if it
1291    loses its connection to GDB.  If 0, the target is to stop tracing
1292    upon disconnection.
1293
1294 set circular-trace-buffer
1295 show circular-trace-buffer
1296    If set to on, the target is instructed to use a circular trace buffer
1297    and discard the oldest trace frames instead of stopping the trace due
1298    to a full trace buffer.  If set to off, the trace stops when the buffer
1299    fills up.  Some targets may not support this.
1300
1301 set script-extension off|soft|strict
1302 show script-extension
1303    If set to "off", the debugger does not perform any script language
1304    recognition, and all sourced files are assumed to be GDB scripts.
1305    If set to "soft" (the default), files are sourced according to
1306    filename extension, falling back to GDB scripts if the first
1307    evaluation failed.
1308    If set to "strict", files are sourced according to filename extension.
1309
1310 set ada trust-PAD-over-XVS on|off
1311 show ada trust-PAD-over-XVS
1312    If off, activate a workaround against a bug in the debugging information
1313    generated by the compiler for PAD types (see gcc/exp_dbug.ads in
1314    the GCC sources for more information about the GNAT encoding and
1315    PAD types in particular).  It is always safe to set this option to
1316    off, but this introduces a slight performance penalty.  The default
1317    is on.
1318
1319 * Python API Improvements
1320
1321   ** GDB provides the new class gdb.LazyString.  This is useful in
1322      some pretty-printing cases.  The new method gdb.Value.lazy_string
1323      provides a simple way to create objects of this type.
1324
1325   ** The fields returned by gdb.Type.fields now have an
1326      `is_base_class' attribute.
1327
1328   ** The new method gdb.Type.range returns the range of an array type.
1329
1330   ** The new method gdb.parse_and_eval can be used to parse and
1331      evaluate an expression.
1332
1333 * New remote packets
1334
1335 QTDV
1336    Define a trace state variable.
1337
1338 qTV
1339    Get the current value of a trace state variable.
1340
1341 QTDisconnected
1342    Set desired tracing behavior upon disconnection.
1343
1344 QTBuffer:circular
1345    Set the trace buffer to be linear or circular.
1346
1347 qTfP, qTsP
1348    Get data about the tracepoints currently in use.
1349
1350 * Bug fixes
1351
1352 Process record now works correctly with hardware watchpoints.
1353
1354 Multiple bug fixes have been made to the mips-irix port, making it
1355 much more reliable. In particular:
1356   - Debugging threaded applications is now possible again.  Previously,
1357     GDB would hang while starting the program, or while waiting for
1358     the program to stop at a breakpoint.
1359   - Attaching to a running process no longer hangs.
1360   - An error occurring while loading a core file has been fixed.
1361   - Changing the value of the PC register now works again.  This fixes
1362     problems observed when using the "jump" command, or when calling
1363     a function from GDB, or even when assigning a new value to $pc.
1364   - With the "finish" and "return" commands, the return value for functions
1365     returning a small array is now correctly printed.
1366   - It is now possible to break on shared library code which gets executed
1367     during a shared library init phase (code executed while executing
1368     their .init section).  Previously, the breakpoint would have no effect.
1369   - GDB is now able to backtrace through the signal handler for
1370     non-threaded programs.
1371
1372 PIE (Position Independent Executable) programs debugging is now supported.
1373 This includes debugging execution of PIC (Position Independent Code) shared
1374 libraries although for that, it should be possible to run such libraries as an
1375 executable program.
1376
1377 *** Changes in GDB 7.0
1378
1379 * GDB now has an interface for JIT compilation.  Applications that
1380 dynamically generate code can create symbol files in memory and register
1381 them with GDB.  For users, the feature should work transparently, and
1382 for JIT developers, the interface is documented in the GDB manual in the
1383 "JIT Compilation Interface" chapter.
1384
1385 * Tracepoints may now be conditional.  The syntax is as for
1386 breakpoints; either an "if" clause appended to the "trace" command,
1387 or the "condition" command is available.  GDB sends the condition to
1388 the target for evaluation using the same bytecode format as is used
1389 for tracepoint actions.
1390
1391 * The disassemble command now supports: an optional /r modifier, print the
1392 raw instructions in hex as well as in symbolic form, and an optional /m
1393 modifier to print mixed source+assembly.
1394
1395 * Process record and replay
1396
1397   In a architecture environment that supports ``process record and
1398   replay'', ``process record and replay'' target can record a log of
1399   the process execution, and replay it with both forward and reverse
1400   execute commands.
1401
1402 * Reverse debugging: GDB now has new commands reverse-continue, reverse-
1403 step, reverse-next, reverse-finish, reverse-stepi, reverse-nexti, and
1404 set execution-direction {forward|reverse}, for targets that support
1405 reverse execution.
1406
1407 * GDB now supports hardware watchpoints on MIPS/Linux systems.  This
1408 feature is available with a native GDB running on kernel version
1409 2.6.28 or later.
1410
1411 * GDB now has support for multi-byte and wide character sets on the
1412 target.  Strings whose character type is wchar_t, char16_t, or
1413 char32_t are now correctly printed.  GDB supports wide- and unicode-
1414 literals in C, that is, L'x', L"string", u'x', u"string", U'x', and
1415 U"string" syntax.  And, GDB allows the "%ls" and "%lc" formats in
1416 `printf'.  This feature requires iconv to work properly; if your
1417 system does not have a working iconv, GDB can use GNU libiconv.  See
1418 the installation instructions for more information.
1419
1420 * GDB now supports automatic retrieval of shared library files from
1421 remote targets.  To use this feature, specify a system root that begins
1422 with the `remote:' prefix, either via the `set sysroot' command or via
1423 the `--with-sysroot' configure-time option.
1424
1425 * "info sharedlibrary" now takes an optional regex of libraries to show,
1426 and it now reports if a shared library has no debugging information.
1427
1428 * Commands `set debug-file-directory', `set solib-search-path' and `set args'
1429 now complete on file names.
1430
1431 * When completing in expressions, gdb will attempt to limit
1432 completions to allowable structure or union fields, where appropriate.
1433 For instance, consider:
1434
1435     # struct example { int f1; double f2; };
1436     # struct example variable;
1437     (gdb) p variable.
1438
1439 If the user types TAB at the end of this command line, the available
1440 completions will be "f1" and "f2".
1441
1442 * Inlined functions are now supported.  They show up in backtraces, and
1443 the "step", "next", and "finish" commands handle them automatically.
1444
1445 * GDB now supports the token-splicing (##) and stringification (#)
1446 operators when expanding macros.  It also supports variable-arity
1447 macros.
1448
1449 * GDB now supports inspecting extra signal information, exported by
1450 the new $_siginfo convenience variable.  The feature is currently
1451 implemented on linux ARM, i386 and amd64.
1452
1453 * GDB can now display the VFP floating point registers and NEON vector
1454 registers on ARM targets.  Both ARM GNU/Linux native GDB and gdbserver
1455 can provide these registers (requires Linux 2.6.30 or later).  Remote
1456 and simulator targets may also provide them.
1457
1458 * New remote packets
1459
1460 qSearch:memory:
1461   Search memory for a sequence of bytes.
1462
1463 QStartNoAckMode
1464   Turn off `+'/`-' protocol acknowledgments to permit more efficient
1465   operation over reliable transport links.  Use of this packet is
1466   controlled by the `set remote noack-packet' command.
1467
1468 vKill
1469   Kill the process with the specified process ID.  Use this in preference
1470   to `k' when multiprocess protocol extensions are supported.
1471
1472 qXfer:osdata:read
1473   Obtains additional operating system information
1474
1475 qXfer:siginfo:read
1476 qXfer:siginfo:write
1477   Read or write additional signal information.
1478
1479 * Removed remote protocol undocumented extension
1480
1481   An undocumented extension to the remote protocol's `S' stop reply
1482   packet that permited the stub to pass a process id was removed.
1483   Remote servers should use the `T' stop reply packet instead.
1484
1485 * GDB now supports multiple function calling conventions according to the
1486 DWARF-2 DW_AT_calling_convention function attribute.
1487   
1488 * The SH target utilizes the aforementioned change to distinguish between gcc
1489 and Renesas calling convention.  It also adds the new CLI commands
1490 `set/show sh calling-convention'.
1491
1492 * GDB can now read compressed debug sections, as produced by GNU gold
1493 with the --compress-debug-sections=zlib flag.
1494
1495 * 64-bit core files are now supported on AIX.
1496
1497 * Thread switching is now supported on Tru64.
1498
1499 * Watchpoints can now be set on unreadable memory locations, e.g. addresses
1500 which will be allocated using malloc later in program execution.
1501
1502 * The qXfer:libraries:read remote procotol packet now allows passing a
1503 list of section offsets.
1504
1505 * On GNU/Linux, GDB can now attach to stopped processes.  Several race
1506 conditions handling signals delivered during attach or thread creation
1507 have also been fixed.
1508
1509 * GDB now supports the use of DWARF boolean types for Ada's type Boolean.
1510 From the user's standpoint, all unqualified instances of True and False
1511 are treated as the standard definitions, regardless of context.
1512
1513 * GDB now parses C++ symbol and type names more flexibly.  For
1514 example, given:
1515
1516    template<typename T> class C { };
1517    C<char const *> c;
1518
1519 GDB will now correctly handle all of:
1520
1521    ptype C<char const *>
1522    ptype C<char const*>
1523    ptype C<const char *>
1524    ptype C<const char*>
1525
1526 * New features in the GDB remote stub, gdbserver
1527
1528   - The "--wrapper" command-line argument tells gdbserver to use a
1529   wrapper program to launch programs for debugging.
1530
1531   - On PowerPC and S/390 targets, it is now possible to use a single
1532   gdbserver executable to debug both 32-bit and 64-bit programs.
1533   (This requires gdbserver itself to be built as a 64-bit executable.)
1534
1535   - gdbserver uses the new noack protocol mode for TCP connections to
1536   reduce communications latency, if also supported and enabled in GDB.
1537
1538   - Support for the sparc64-linux-gnu target is now included in
1539   gdbserver.
1540
1541   - The amd64-linux build of gdbserver now supports debugging both
1542     32-bit and 64-bit programs.
1543
1544   - The i386-linux, amd64-linux, and i386-win32 builds of gdbserver
1545     now support hardware watchpoints, and will use them automatically
1546     as appropriate.
1547
1548 * Python scripting
1549
1550   GDB now has support for scripting using Python.  Whether this is
1551   available is determined at configure time.
1552
1553   New GDB commands can now be written in Python.
1554
1555 * Ada tasking support
1556
1557   Ada tasks can now be inspected in GDB. The following commands have
1558   been introduced:
1559
1560     info tasks
1561       Print the list of Ada tasks.
1562     info task N
1563       Print detailed information about task number N.
1564     task
1565       Print the task number of the current task.
1566     task N
1567       Switch the context of debugging to task number N.
1568
1569 * Support for user-defined prefixed commands.  The "define" command can
1570 add new commands to existing prefixes, e.g. "target".
1571
1572 * Multi-inferior, multi-process debugging.
1573
1574   GDB now has generalized support for multi-inferior debugging.  See
1575   "Debugging Multiple Inferiors" in the manual for more information.
1576   Although availability still depends on target support, the command
1577   set is more uniform now.  The GNU/Linux specific multi-forks support
1578   has been migrated to this new framework.  This implied some user
1579   visible changes; see "New commands" and also "Removed commands"
1580   below.
1581
1582 * Target descriptions can now describe the target OS ABI.  See the
1583 "Target Description Format" section in the user manual for more
1584 information.
1585
1586 * Target descriptions can now describe "compatible" architectures
1587 to indicate that the target can execute applications for a different
1588 architecture in addition to those for the main target architecture.
1589 See the "Target Description Format" section in the user manual for
1590 more information.
1591
1592 * Multi-architecture debugging.
1593
1594   GDB now includes general supports for debugging applications on
1595   hybrid systems that use more than one single processor architecture
1596   at the same time.  Each such hybrid architecture still requires
1597   specific support to be added.  The only hybrid architecture supported
1598   in this version of GDB is the Cell Broadband Engine.
1599
1600 * GDB now supports integrated debugging of Cell/B.E. applications that
1601 use both the PPU and SPU architectures.  To enable support for hybrid
1602 Cell/B.E. debugging, you need to configure GDB to support both the
1603 powerpc-linux or powerpc64-linux and the spu-elf targets, using the
1604 --enable-targets configure option.
1605
1606 * Non-stop mode debugging.
1607
1608   For some targets, GDB now supports an optional mode of operation in
1609   which you can examine stopped threads while other threads continue
1610   to execute freely.  This is referred to as non-stop mode, with the
1611   old mode referred to as all-stop mode.  See the "Non-Stop Mode"
1612   section in the user manual for more information.
1613
1614   To be able to support remote non-stop debugging, a remote stub needs
1615   to implement the non-stop mode remote protocol extensions, as
1616   described in the "Remote Non-Stop" section of the user manual.  The
1617   GDB remote stub, gdbserver, has been adjusted to support these
1618   extensions on linux targets.
1619
1620 * New commands (for set/show, see "New options" below)
1621
1622 catch syscall [NAME(S) | NUMBER(S)]
1623   Catch system calls.  Arguments, which should be names of system
1624   calls or their numbers, mean catch only those syscalls.  Without
1625   arguments, every syscall will be caught.  When the inferior issues
1626   any of the specified syscalls, GDB will stop and announce the system
1627   call, both when it is called and when its call returns.  This
1628   feature is currently available with a native GDB running on the
1629   Linux Kernel, under the following architectures: x86, x86_64,
1630   PowerPC and PowerPC64.
1631
1632 find [/size-char] [/max-count] start-address, end-address|+search-space-size,
1633     val1 [, val2, ...]
1634   Search memory for a sequence of bytes.
1635
1636 maint set python print-stack
1637 maint show python print-stack
1638   Show a stack trace when an error is encountered in a Python script.
1639
1640 python [CODE]
1641   Invoke CODE by passing it to the Python interpreter.
1642
1643 macro define
1644 macro list
1645 macro undef
1646   These allow macros to be defined, undefined, and listed
1647   interactively.
1648
1649 info os processes
1650   Show operating system information about processes.
1651
1652 info inferiors
1653   List the inferiors currently under GDB's control.
1654
1655 inferior NUM
1656   Switch focus to inferior number NUM.
1657
1658 detach inferior NUM
1659   Detach from inferior number NUM.
1660
1661 kill inferior NUM
1662   Kill inferior number NUM.
1663
1664 * New options
1665
1666 set spu stop-on-load
1667 show spu stop-on-load
1668   Control whether to stop for new SPE threads during Cell/B.E. debugging.
1669
1670 set spu auto-flush-cache
1671 show spu auto-flush-cache
1672   Control whether to automatically flush the software-managed cache
1673   during Cell/B.E. debugging.
1674
1675 set sh calling-convention
1676 show sh calling-convention
1677   Control the calling convention used when calling SH target functions.
1678
1679 set debug timestamp
1680 show debug timestamp
1681   Control display of timestamps with GDB debugging output.
1682
1683 set disassemble-next-line
1684 show disassemble-next-line
1685   Control display of disassembled source lines or instructions when
1686   the debuggee stops.
1687
1688 set remote noack-packet
1689 show remote noack-packet
1690   Set/show the use of remote protocol QStartNoAckMode packet.  See above
1691   under "New remote packets."
1692
1693 set remote query-attached-packet
1694 show remote query-attached-packet
1695   Control use of remote protocol `qAttached' (query-attached) packet.
1696
1697 set remote read-siginfo-object
1698 show remote read-siginfo-object
1699   Control use of remote protocol `qXfer:siginfo:read' (read-siginfo-object)
1700   packet.
1701
1702 set remote write-siginfo-object
1703 show remote write-siginfo-object
1704   Control use of remote protocol `qXfer:siginfo:write' (write-siginfo-object)
1705   packet.
1706
1707 set remote reverse-continue
1708 show remote reverse-continue
1709   Control use of remote protocol 'bc' (reverse-continue) packet.
1710
1711 set remote reverse-step
1712 show remote reverse-step
1713   Control use of remote protocol 'bs' (reverse-step) packet.
1714
1715 set displaced-stepping
1716 show displaced-stepping
1717   Control displaced stepping mode.  Displaced stepping is a way to
1718   single-step over breakpoints without removing them from the debuggee.
1719   Also known as "out-of-line single-stepping".
1720
1721 set debug displaced
1722 show debug displaced
1723   Control display of debugging info for displaced stepping.
1724
1725 maint set internal-error
1726 maint show internal-error
1727   Control what GDB does when an internal error is detected.
1728
1729 maint set internal-warning
1730 maint show internal-warning
1731   Control what GDB does when an internal warning is detected.
1732
1733 set exec-wrapper
1734 show exec-wrapper
1735 unset exec-wrapper
1736   Use a wrapper program to launch programs for debugging.
1737
1738 set multiple-symbols (all|ask|cancel)
1739 show multiple-symbols
1740   The value of this variable can be changed to adjust the debugger behavior
1741   when an expression or a breakpoint location contains an ambiguous symbol
1742   name (an overloaded function name, for instance).
1743   
1744 set breakpoint always-inserted
1745 show breakpoint always-inserted
1746   Keep breakpoints always inserted in the target, as opposed to inserting
1747   them when resuming the target, and removing them when the target stops.
1748   This option can improve debugger performance on slow remote targets.
1749
1750 set arm fallback-mode (arm|thumb|auto)
1751 show arm fallback-mode
1752 set arm force-mode (arm|thumb|auto)
1753 show arm force-mode
1754   These commands control how ARM GDB determines whether instructions
1755   are ARM or Thumb.  The default for both settings is auto, which uses
1756   the current CPSR value for instructions without symbols; previous
1757   versions of GDB behaved as if "set arm fallback-mode arm".
1758
1759 set disable-randomization
1760 show disable-randomization
1761   Standalone programs run with the virtual address space randomization enabled
1762   by default on some platforms.  This option keeps the addresses stable across
1763   multiple debugging sessions.
1764
1765 set non-stop
1766 show non-stop
1767   Control whether other threads are stopped or not when some thread hits
1768   a breakpoint.
1769
1770 set target-async
1771 show target-async
1772   Requests that asynchronous execution is enabled in the target, if available.
1773   In this case, it's possible to resume target in the background, and interact
1774   with GDB while the target is running.  "show target-async" displays the
1775   current state of asynchronous execution of the target.
1776
1777 set target-wide-charset
1778 show target-wide-charset
1779   The target-wide-charset is the name of the character set that GDB
1780   uses when printing characters whose type is wchar_t.
1781
1782 set tcp auto-retry (on|off)
1783 show tcp auto-retry
1784 set tcp connect-timeout
1785 show tcp connect-timeout
1786   These commands allow GDB to retry failed TCP connections to a remote stub
1787   with a specified timeout period; this is useful if the stub is launched
1788   in parallel with GDB but may not be ready to accept connections immediately.
1789
1790 set libthread-db-search-path
1791 show libthread-db-search-path
1792   Control list of directories which GDB will search for appropriate
1793   libthread_db.
1794
1795 set schedule-multiple (on|off)
1796 show schedule-multiple
1797   Allow GDB to resume all threads of all processes or only threads of
1798   the current process.
1799
1800 set stack-cache
1801 show stack-cache
1802   Use more aggressive caching for accesses to the stack.  This improves
1803   performance of remote debugging (particularly backtraces) without
1804   affecting correctness.
1805
1806 set interactive-mode (on|off|auto)
1807 show interactive-mode
1808   Control whether GDB runs in interactive mode (on) or not (off).
1809   When in interactive mode, GDB waits for the user to answer all
1810   queries.  Otherwise, GDB does not wait and assumes the default
1811   answer.  When set to auto (the default), GDB determines which
1812   mode to use based on the stdin settings.
1813
1814 * Removed commands
1815
1816 info forks
1817   For program forks, this is replaced by the new more generic `info
1818   inferiors' command.  To list checkpoints, you can still use the
1819   `info checkpoints' command, which was an alias for the `info forks'
1820   command.
1821
1822 fork NUM
1823   Replaced by the new `inferior' command.  To switch between
1824   checkpoints, you can still use the `restart' command, which was an
1825   alias for the `fork' command.
1826
1827 process PID
1828   This is removed, since some targets don't have a notion of
1829   processes.  To switch between processes, you can still use the
1830   `inferior' command using GDB's own inferior number.
1831
1832 delete fork NUM
1833   For program forks, this is replaced by the new more generic `kill
1834   inferior' command.  To delete a checkpoint, you can still use the
1835   `delete checkpoint' command, which was an alias for the `delete
1836   fork' command.
1837
1838 detach fork NUM
1839   For program forks, this is replaced by the new more generic `detach
1840   inferior' command.  To detach a checkpoint, you can still use the
1841   `detach checkpoint' command, which was an alias for the `detach
1842   fork' command.
1843
1844 * New native configurations
1845
1846 x86/x86_64 Darwin               i[34567]86-*-darwin*
1847
1848 x86_64 MinGW                    x86_64-*-mingw*
1849
1850 * New targets
1851
1852 Lattice Mico32                  lm32-*
1853 x86 DICOS                       i[34567]86-*-dicos*
1854 x86_64 DICOS                    x86_64-*-dicos*
1855 S+core 3                        score-*-*
1856
1857 * The GDB remote stub, gdbserver, now supports x86 Windows CE
1858   (mingw32ce) debugging.
1859
1860 * Removed commands
1861
1862 catch load
1863 catch unload
1864   These commands were actually not implemented on any target.
1865
1866 *** Changes in GDB 6.8
1867
1868 * New native configurations
1869
1870 NetBSD/hppa                     hppa*-*netbsd*
1871 Xtensa GNU/Linux                xtensa*-*-linux*
1872
1873 * New targets
1874
1875 NetBSD/hppa                     hppa*-*-netbsd*
1876 Xtensa GNU/Lunux                xtensa*-*-linux*
1877
1878 * Change in command line behavior -- corefiles vs. process ids.
1879
1880   When the '-p NUMBER' or '--pid NUMBER' options are used, and
1881   attaching to process NUMBER fails, GDB no longer attempts to open a
1882   core file named NUMBER.  Attaching to a program using the -c option
1883   is no longer supported.  Instead, use the '-p' or '--pid' options.
1884
1885 * GDB can now be built as a native debugger for debugging Windows x86
1886 (mingw32) Portable Executable (PE) programs.
1887
1888 * Pending breakpoints no longer change their number when their address
1889 is resolved.
1890
1891 * GDB now supports breakpoints with multiple locations,
1892 including breakpoints on C++ constructors, inside C++ templates,
1893 and in inlined functions.
1894
1895 * GDB's ability to debug optimized code has been improved.  GDB more
1896 accurately identifies function bodies and lexical blocks that occupy
1897 more than one contiguous range of addresses.
1898
1899 * Target descriptions can now describe registers for PowerPC.
1900
1901 * The GDB remote stub, gdbserver, now supports the AltiVec and SPE
1902 registers on PowerPC targets.
1903
1904 * The GDB remote stub, gdbserver, now supports thread debugging on GNU/Linux
1905 targets even when the libthread_db library is not available.
1906
1907 * The GDB remote stub, gdbserver, now supports the new file transfer
1908 commands (remote put, remote get, and remote delete).
1909
1910 * The GDB remote stub, gdbserver, now supports run and attach in
1911 extended-remote mode.
1912
1913 * hppa*64*-*-hpux11* target broken
1914 The debugger is unable to start a program and fails with the following
1915 error: "Error trying to get information about dynamic linker".
1916 The gdb-6.7 release is also affected.
1917
1918 * GDB now supports the --enable-targets= configure option to allow
1919 building a single GDB executable that supports multiple remote
1920 target architectures.
1921
1922 * GDB now supports debugging C and C++ programs which use the
1923 Decimal Floating Point extension.  In addition, the PowerPC target
1924 now has a set of pseudo-registers to inspect decimal float values
1925 stored in two consecutive float registers.
1926
1927 * The -break-insert MI command can optionally create pending
1928 breakpoints now.
1929
1930 * Improved support for debugging Ada
1931 Many improvements to the Ada language support have been made.  These
1932 include:
1933     - Better support for Ada2005 interface types
1934     - Improved handling of arrays and slices in general
1935     - Better support for Taft-amendment types
1936     - The '{type} ADDRESS' expression is now allowed on the left hand-side
1937       of an assignment
1938     - Improved command completion in Ada
1939     - Several bug fixes
1940
1941 * GDB on GNU/Linux and HP/UX can now debug through "exec" of a new
1942 process.
1943
1944 * New commands
1945
1946 set print frame-arguments (all|scalars|none)
1947 show print frame-arguments
1948   The value of this variable can be changed to control which argument
1949   values should be printed by the debugger when displaying a frame.
1950
1951 remote put
1952 remote get
1953 remote delete
1954   Transfer files to and from a remote target, and delete remote files.
1955
1956 * New MI commands
1957
1958 -target-file-put
1959 -target-file-get
1960 -target-file-delete
1961   Transfer files to and from a remote target, and delete remote files.
1962
1963 * New remote packets
1964
1965 vFile:open:
1966 vFile:close:
1967 vFile:pread:
1968 vFile:pwrite:
1969 vFile:unlink:
1970   Open, close, read, write, and delete files on the remote system.
1971
1972 vAttach
1973   Attach to an existing process on the remote system, in extended-remote
1974   mode.
1975
1976 vRun
1977   Run a new process on the remote system, in extended-remote mode.
1978
1979 *** Changes in GDB 6.7
1980
1981 * Resolved 101 resource leaks, null pointer dereferences, etc. in gdb, 
1982 bfd, libiberty and opcodes, as revealed by static analysis donated by
1983 Coverity, Inc. (http://scan.coverity.com).
1984
1985 * When looking up multiply-defined global symbols, GDB will now prefer the
1986 symbol definition in the current shared library if it was built using the
1987 -Bsymbolic linker option.
1988
1989 * When the Text User Interface (TUI) is not configured, GDB will now
1990 recognize the -tui command-line option and print a message that the TUI
1991 is not supported.
1992
1993 * The GDB remote stub, gdbserver, now has lower overhead for high 
1994 frequency signals (e.g. SIGALRM) via the QPassSignals packet.
1995
1996 * GDB for MIPS targets now autodetects whether a remote target provides
1997 32-bit or 64-bit register values.
1998
1999 * Support for C++ member pointers has been improved.
2000
2001 * GDB now understands XML target descriptions, which specify the
2002 target's overall architecture.  GDB can read a description from
2003 a local file or over the remote serial protocol.
2004
2005 * Vectors of single-byte data use a new integer type which is not
2006 automatically displayed as character or string data.
2007
2008 * The /s format now works with the print command.  It displays
2009 arrays of single-byte integers and pointers to single-byte integers
2010 as strings.
2011
2012 * Target descriptions can now describe target-specific registers,
2013 for architectures which have implemented the support (currently
2014 only ARM, M68K, and MIPS).
2015
2016 * GDB and the GDB remote stub, gdbserver, now support the XScale
2017 iWMMXt coprocessor.
2018
2019 * The GDB remote stub, gdbserver, has been updated to support
2020 ARM Windows CE (mingw32ce) debugging, and GDB Windows CE support
2021 has been rewritten to use the standard GDB remote protocol.
2022
2023 * GDB can now step into C++ functions which are called through thunks.
2024
2025 * GDB for the Cell/B.E. SPU now supports overlay debugging.
2026
2027 * The GDB remote protocol "qOffsets" packet can now honor ELF segment
2028 layout.  It also supports a TextSeg= and DataSeg= response when only
2029 segment base addresses (rather than offsets) are available.
2030
2031 * The /i format now outputs any trailing branch delay slot instructions 
2032 immediately following the last instruction within the count specified.
2033
2034 * The GDB remote protocol "T" stop reply packet now supports a
2035 "library" response.  Combined with the new "qXfer:libraries:read"
2036 packet, this response allows GDB to debug shared libraries on targets
2037 where the operating system manages the list of loaded libraries (e.g.
2038 Windows and SymbianOS).
2039
2040 * The GDB remote stub, gdbserver, now supports dynamic link libraries
2041 (DLLs) on Windows and Windows CE targets.
2042
2043 * GDB now supports a faster verification that a .debug file matches its binary
2044 according to its build-id signature, if the signature is present.
2045
2046 * New commands
2047
2048 set remoteflow
2049 show remoteflow
2050   Enable or disable hardware flow control (RTS/CTS) on the serial port
2051   when debugging using remote targets.
2052
2053 set mem inaccessible-by-default
2054 show mem inaccessible-by-default
2055   If the target supplies a memory map, for instance via the remote
2056   protocol's "qXfer:memory-map:read" packet, setting this variable
2057   prevents GDB from accessing memory outside the memory map.  This
2058   is useful for targets with memory mapped registers or which react
2059   badly to accesses of unmapped address space.
2060
2061 set breakpoint auto-hw
2062 show breakpoint auto-hw
2063   If the target supplies a memory map, for instance via the remote
2064   protocol's "qXfer:memory-map:read" packet, setting this variable
2065   lets GDB use hardware breakpoints automatically for memory regions
2066   where it can not use software breakpoints.  This covers both the
2067   "break" command and internal breakpoints used for other commands
2068   including "next" and "finish".
2069
2070 catch exception
2071 catch exception unhandled
2072   Stop the program execution when Ada exceptions are raised.
2073
2074 catch assert
2075   Stop the program execution when an Ada assertion failed.
2076
2077 set sysroot
2078 show sysroot
2079   Set an alternate system root for target files.  This is a more
2080   general version of "set solib-absolute-prefix", which is now
2081   an alias to "set sysroot".
2082
2083 info spu
2084   Provide extended SPU facility status information.  This set of
2085   commands is available only when debugging the Cell/B.E. SPU
2086   architecture.
2087
2088 * New native configurations
2089
2090 OpenBSD/sh                      sh*-*openbsd*
2091
2092 set tdesc filename
2093 unset tdesc filename
2094 show tdesc filename
2095   Use the specified local file as an XML target description, and do
2096   not query the target for its built-in description.
2097
2098 * New targets
2099
2100 OpenBSD/sh                      sh*-*-openbsd*
2101 MIPS64 GNU/Linux (gdbserver)    mips64-linux-gnu
2102 Toshiba Media Processor         mep-elf
2103
2104 * New remote packets
2105
2106 QPassSignals:
2107   Ignore the specified signals; pass them directly to the debugged program
2108   without stopping other threads or reporting them to GDB.
2109
2110 qXfer:features:read:
2111   Read an XML target description from the target, which describes its
2112   features.
2113
2114 qXfer:spu:read:
2115 qXfer:spu:write:
2116   Read or write contents of an spufs file on the target system.  These
2117   packets are available only on the Cell/B.E. SPU architecture.
2118
2119 qXfer:libraries:read:
2120   Report the loaded shared libraries.  Combined with new "T" packet
2121   response, this packet allows GDB to debug shared libraries on
2122   targets where the operating system manages the list of loaded
2123   libraries (e.g. Windows and SymbianOS).
2124
2125 * Removed targets
2126
2127 Support for these obsolete configurations has been removed.
2128
2129 alpha*-*-osf1*
2130 alpha*-*-osf2*
2131 d10v-*-*
2132 hppa*-*-hiux*
2133 i[34567]86-ncr-*
2134 i[34567]86-*-dgux*
2135 i[34567]86-*-lynxos*
2136 i[34567]86-*-netware*
2137 i[34567]86-*-sco3.2v5*
2138 i[34567]86-*-sco3.2v4*
2139 i[34567]86-*-sco*
2140 i[34567]86-*-sysv4.2*
2141 i[34567]86-*-sysv4*
2142 i[34567]86-*-sysv5*
2143 i[34567]86-*-unixware2*
2144 i[34567]86-*-unixware*
2145 i[34567]86-*-sysv*
2146 i[34567]86-*-isc*
2147 m68*-cisco*-*
2148 m68*-tandem-*
2149 mips*-*-pe
2150 rs6000-*-lynxos*
2151 sh*-*-pe
2152
2153 * Other removed features
2154
2155 target abug
2156 target cpu32bug
2157 target est
2158 target rom68k
2159
2160         Various m68k-only ROM monitors.
2161
2162 target hms
2163 target e7000
2164 target sh3
2165 target sh3e
2166
2167         Various Renesas ROM monitors and debugging interfaces for SH and
2168         H8/300.
2169
2170 target ocd
2171
2172         Support for a Macraigor serial interface to on-chip debugging.
2173         GDB does not directly support the newer parallel or USB
2174         interfaces.
2175
2176 DWARF 1 support
2177
2178         A debug information format.  The predecessor to DWARF 2 and 
2179         DWARF 3, which are still supported.
2180
2181 Support for the HP aCC compiler on HP-UX/PA-RISC
2182
2183         SOM-encapsulated symbolic debugging information, automatic
2184         invocation of pxdb, and the aCC custom C++ ABI.  This does not
2185         affect HP-UX for Itanium or GCC for HP-UX/PA-RISC.  Code compiled
2186         with aCC can still be debugged on an assembly level.
2187
2188 MIPS ".pdr" sections
2189
2190         A MIPS-specific format used to describe stack frame layout
2191         in debugging information.
2192
2193 Scheme support
2194
2195         GDB could work with an older version of Guile to debug
2196         the interpreter and Scheme programs running in it.
2197
2198 set mips stack-arg-size
2199 set mips saved-gpreg-size
2200
2201         Use "set mips abi" to control parameter passing for MIPS.
2202
2203 *** Changes in GDB 6.6
2204
2205 * New targets
2206
2207 Xtensa                          xtensa-elf
2208 Cell Broadband Engine SPU       spu-elf
2209
2210 * GDB can now be configured as a cross-debugger targeting native Windows
2211 (mingw32) or Cygwin.  It can communicate with a remote debugging stub
2212 running on a Windows system over TCP/IP to debug Windows programs.
2213
2214 * The GDB remote stub, gdbserver, has been updated to support Windows and
2215 Cygwin debugging.  Both single-threaded and multi-threaded programs are
2216 supported.
2217
2218 * The "set trust-readonly-sections" command works again.  This command was
2219 broken in GDB 6.3, 6.4, and 6.5.
2220
2221 * The "load" command now supports writing to flash memory, if the remote
2222 stub provides the required support.
2223
2224 * Support for GNU/Linux Thread Local Storage (TLS, per-thread variables) no
2225 longer requires symbolic debug information (e.g. DWARF-2).
2226
2227 * New commands
2228
2229 set substitute-path
2230 unset substitute-path
2231 show substitute-path
2232   Manage a list of substitution rules that GDB uses to rewrite the name
2233   of the directories where the sources are located. This can be useful
2234   for instance when the sources were moved to a different location
2235   between compilation and debugging.
2236
2237 set trace-commands
2238 show trace-commands
2239   Print each CLI command as it is executed.  Each command is prefixed with
2240   a number of `+' symbols representing the nesting depth.
2241   The source command now has a `-v' option to enable the same feature.
2242
2243 * REMOVED features
2244
2245 The ARM Demon monitor support (RDP protocol, "target rdp").
2246
2247 Kernel Object Display, an embedded debugging feature which only worked with
2248 an obsolete version of Cisco IOS.
2249
2250 The 'set download-write-size' and 'show download-write-size' commands.
2251
2252 * New remote packets
2253
2254 qSupported:
2255   Tell a stub about GDB client features, and request remote target features.
2256   The first feature implemented is PacketSize, which allows the target to
2257   specify the size of packets it can handle - to minimize the number of
2258   packets required and improve performance when connected to a remote
2259   target.
2260
2261 qXfer:auxv:read:
2262   Fetch an OS auxilliary vector from the remote stub.  This packet is a
2263   more efficient replacement for qPart:auxv:read.
2264
2265 qXfer:memory-map:read:
2266   Fetch a memory map from the remote stub, including information about
2267   RAM, ROM, and flash memory devices.
2268
2269 vFlashErase:
2270 vFlashWrite:
2271 vFlashDone:
2272   Erase and program a flash memory device.
2273
2274 * Removed remote packets
2275
2276 qPart:auxv:read:
2277   This packet has been replaced by qXfer:auxv:read.  Only GDB 6.4 and 6.5
2278   used it, and only gdbserver implemented it.
2279
2280 *** Changes in GDB 6.5
2281
2282 * New targets
2283
2284 Renesas M32C/M16C               m32c-elf
2285
2286 Morpho Technologies ms1         ms1-elf
2287
2288 * New commands
2289
2290 init-if-undefined               Initialize a convenience variable, but
2291                                 only if it doesn't already have a value.
2292
2293 The following commands are presently only implemented for native GNU/Linux:
2294
2295 checkpoint                      Save a snapshot of the program state.
2296
2297 restart <n>                     Return the program state to a 
2298                                 previously saved state.
2299
2300 info checkpoints                List currently saved checkpoints.
2301
2302 delete-checkpoint <n>           Delete a previously saved checkpoint.
2303
2304 set|show detach-on-fork         Tell gdb whether to detach from a newly
2305                                 forked process, or to keep debugging it.
2306
2307 info forks                      List forks of the user program that
2308                                 are available to be debugged.
2309
2310 fork <n>                        Switch to debugging one of several
2311                                 forks of the user program that are
2312                                 available to be debugged.
2313
2314 delete-fork <n>                 Delete a fork from the list of forks
2315                                 that are available to be debugged (and
2316                                 kill the forked process).
2317
2318 detach-fork <n>                 Delete a fork from the list of forks
2319                                 that are available to be debugged (and
2320                                 allow the process to continue).
2321
2322 * New architecture
2323
2324 Morpho Technologies ms2         ms1-elf
2325
2326 * Improved Windows host support
2327
2328 GDB now builds as a cross debugger hosted on i686-mingw32, including
2329 native console support, and remote communications using either
2330 network sockets or serial ports.
2331
2332 * Improved Modula-2 language support
2333
2334 GDB can now print most types in the Modula-2 syntax.  This includes:
2335 basic types, set types, record types, enumerated types, range types,
2336 pointer types and ARRAY types.  Procedure var parameters are correctly
2337 printed and hexadecimal addresses and character constants are also
2338 written in the Modula-2 syntax.  Best results can be obtained by using
2339 GNU Modula-2 together with the -gdwarf-2 command line option.
2340
2341 * REMOVED features
2342
2343 The ARM rdi-share module.
2344
2345 The Netware NLM debug server.
2346
2347 *** Changes in GDB 6.4
2348
2349 * New native configurations
2350
2351 OpenBSD/arm                     arm*-*-openbsd*
2352 OpenBSD/mips64                  mips64-*-openbsd*
2353
2354 * New targets
2355
2356 Morpho Technologies ms1         ms1-elf
2357
2358 * New command line options
2359
2360 --batch-silent                  As for --batch, but totally silent.
2361 --return-child-result           The debugger will exist with the same value
2362                                 the child (debugged) program exited with.
2363 --eval-command COMMAND, -ex COMMAND
2364                                 Execute a single GDB CLI command. This may be
2365                                 specified multiple times and in conjunction
2366                                 with the --command (-x) option.
2367
2368 * Deprecated commands removed
2369
2370 The following commands, that were deprecated in 2000, have been
2371 removed:
2372
2373   Command                               Replacement
2374   set|show arm disassembly-flavor       set|show arm disassembler
2375   othernames                            set arm disassembler
2376   set|show remotedebug                  set|show debug remote
2377   set|show archdebug                    set|show debug arch
2378   set|show eventdebug                   set|show debug event
2379   regs                                  info registers
2380
2381 * New BSD user-level threads support
2382
2383 It is now possible to debug programs using the user-level threads
2384 library on OpenBSD and FreeBSD.  Currently supported (target)
2385 configurations are:
2386
2387 FreeBSD/amd64                   x86_64-*-freebsd*
2388 FreeBSD/i386                    i386-*-freebsd*
2389 OpenBSD/i386                    i386-*-openbsd*
2390
2391 Note that the new kernel threads libraries introduced in FreeBSD 5.x
2392 are not yet supported.
2393
2394 * New support for Matsushita MN10300 w/sim added
2395 (Work in progress).  mn10300-elf.
2396
2397 * REMOVED configurations and files
2398
2399 VxWorks and the XDR protocol                    *-*-vxworks
2400 Motorola MCORE                                  mcore-*-*
2401 National Semiconductor NS32000                  ns32k-*-*
2402
2403 * New "set print array-indexes" command
2404
2405 After turning this setting "on", GDB prints the index of each element
2406 when displaying arrays.  The default is "off" to preserve the previous
2407 behavior.
2408
2409 * VAX floating point support
2410
2411 GDB now supports the not-quite-ieee VAX F and D floating point formats.
2412
2413 * User-defined command support
2414
2415 In addition to using $arg0..$arg9 for argument passing, it is now possible
2416 to use $argc to determine now many arguments have been passed.  See the
2417 section on user-defined commands in the user manual for more information.
2418
2419 *** Changes in GDB 6.3:
2420
2421 * New command line option
2422
2423 GDB now accepts -l followed by a number to set the timeout for remote
2424 debugging.
2425
2426 * GDB works with GCC -feliminate-dwarf2-dups
2427
2428 GDB now supports a more compact representation of DWARF-2 debug
2429 information using DW_FORM_ref_addr references.  These are produced
2430 by GCC with the option -feliminate-dwarf2-dups and also by some
2431 proprietary compilers.  With GCC, you must use GCC 3.3.4 or later
2432 to use -feliminate-dwarf2-dups.
2433
2434 * Internationalization
2435
2436 When supported by the host system, GDB will be built with
2437 internationalization (libintl).  The task of marking up the sources is
2438 continued, we're looking forward to our first translation.
2439
2440 * Ada
2441
2442 Initial support for debugging programs compiled with the GNAT 
2443 implementation of the Ada programming language has been integrated 
2444 into GDB.  In this release, support is limited to expression evaluation.
2445
2446 * New native configurations
2447
2448 GNU/Linux/m32r                                  m32r-*-linux-gnu
2449
2450 * Remote 'p' packet
2451
2452 GDB's remote protocol now includes support for the 'p' packet.  This
2453 packet is used to fetch individual registers from a remote inferior.
2454
2455 * END-OF-LIFE registers[] compatibility module
2456
2457 GDB's internal register infrastructure has been completely rewritten.
2458 The new infrastructure making possible the implementation of key new
2459 features including 32x64 (e.g., 64-bit amd64 GDB debugging a 32-bit
2460 i386 application).
2461
2462 GDB 6.3 will be the last release to include the the registers[]
2463 compatibility module that allowed out-of-date configurations to
2464 continue to work.  This change directly impacts the following
2465 configurations:
2466
2467 hppa-*-hpux
2468 ia64-*-aix
2469 mips-*-irix*
2470 *-*-lynx
2471 mips-*-linux-gnu
2472 sds protocol
2473 xdr protocol
2474 powerpc bdm protocol
2475
2476 Unless there is activity to revive these configurations, they will be
2477 made OBSOLETE in GDB 6.4, and REMOVED from GDB 6.5.
2478
2479 * OBSOLETE configurations and files
2480
2481 Configurations that have been declared obsolete in this release have
2482 been commented out.  Unless there is activity to revive these
2483 configurations, the next release of GDB will have their sources
2484 permanently REMOVED.
2485
2486 h8300-*-*
2487 mcore-*-*
2488 mn10300-*-*
2489 ns32k-*-*
2490 sh64-*-*
2491 v850-*-*
2492
2493 *** Changes in GDB 6.2.1:
2494
2495 * MIPS `break main; run' gave an heuristic-fence-post warning
2496
2497 When attempting to run even a simple program, a warning about
2498 heuristic-fence-post being hit would be reported.  This problem has
2499 been fixed.
2500
2501 * MIPS IRIX 'long double' crashed GDB
2502
2503 When examining a long double variable, GDB would get a segmentation
2504 fault.  The crash has been fixed (but GDB 6.2 cannot correctly examine
2505 IRIX long double values).
2506
2507 * VAX and "next"
2508
2509 A bug in the VAX stack code was causing problems with the "next"
2510 command.  This problem has been fixed.
2511
2512 *** Changes in GDB 6.2:
2513
2514 * Fix for ``many threads''
2515
2516 On GNU/Linux systems that use the NPTL threads library, a program
2517 rapidly creating and deleting threads would confuse GDB leading to the
2518 error message:
2519
2520         ptrace: No such process.
2521         thread_db_get_info: cannot get thread info: generic error
2522
2523 This problem has been fixed.
2524
2525 * "-async" and "-noasync" options removed.
2526
2527 Support for the broken "-noasync" option has been removed (it caused
2528 GDB to dump core).
2529
2530 * New ``start'' command.
2531
2532 This command runs the program until the begining of the main procedure.
2533
2534 * New BSD Kernel Data Access Library (libkvm) interface
2535
2536 Using ``target kvm'' it is now possible to debug kernel core dumps and
2537 live kernel memory images on various FreeBSD, NetBSD and OpenBSD
2538 platforms.  Currently supported (native-only) configurations are:
2539
2540 FreeBSD/amd64                   x86_64-*-freebsd*
2541 FreeBSD/i386                    i?86-*-freebsd*
2542 NetBSD/i386                     i?86-*-netbsd*
2543 NetBSD/m68k                     m68*-*-netbsd*
2544 NetBSD/sparc                    sparc-*-netbsd*
2545 OpenBSD/amd64                   x86_64-*-openbsd*
2546 OpenBSD/i386                    i?86-*-openbsd*
2547 OpenBSD/m68k                    m68*-openbsd*
2548 OpenBSD/sparc                   sparc-*-openbsd*
2549
2550 * Signal trampoline code overhauled
2551
2552 Many generic problems with GDB's signal handling code have been fixed.
2553 These include: backtraces through non-contiguous stacks; recognition
2554 of sa_sigaction signal trampolines; backtrace from a NULL pointer
2555 call; backtrace through a signal trampoline; step into and out of
2556 signal handlers; and single-stepping in the signal trampoline.
2557
2558 Please note that kernel bugs are a limiting factor here.  These
2559 features have been shown to work on an s390 GNU/Linux system that
2560 include a 2.6.8-rc1 kernel.  Ref PR breakpoints/1702.
2561
2562 * Cygwin support for DWARF 2 added.
2563
2564 * New native configurations
2565
2566 GNU/Linux/hppa                                  hppa*-*-linux*
2567 OpenBSD/hppa                                    hppa*-*-openbsd*
2568 OpenBSD/m68k                                    m68*-*-openbsd*
2569 OpenBSD/m88k                                    m88*-*-openbsd*
2570 OpenBSD/powerpc                                 powerpc-*-openbsd*
2571 NetBSD/vax                                      vax-*-netbsd*
2572 OpenBSD/vax                                     vax-*-openbsd*
2573
2574 * END-OF-LIFE frame compatibility module
2575
2576 GDB's internal frame infrastructure has been completely rewritten.
2577 The new infrastructure making it possible to support key new features
2578 including DWARF 2 Call Frame Information.  To aid in the task of
2579 migrating old configurations to this new infrastructure, a
2580 compatibility module, that allowed old configurations to continue to
2581 work, was also included.
2582
2583 GDB 6.2 will be the last release to include this frame compatibility
2584 module.  This change directly impacts the following configurations:
2585
2586 h8300-*-*
2587 mcore-*-*
2588 mn10300-*-*
2589 ns32k-*-*
2590 sh64-*-*
2591 v850-*-*
2592 xstormy16-*-*
2593
2594 Unless there is activity to revive these configurations, they will be
2595 made OBSOLETE in GDB 6.3, and REMOVED from GDB 6.4.
2596
2597 * REMOVED configurations and files
2598
2599 Sun 3, running SunOS 3                          m68*-*-sunos3*
2600 Sun 3, running SunOS 4                          m68*-*-sunos4*
2601 Sun 2, running SunOS 3                          m68000-*-sunos3*
2602 Sun 2, running SunOS 4                          m68000-*-sunos4*
2603 Motorola 680x0 running LynxOS                   m68*-*-lynxos*
2604 AT&T 3b1/Unix pc                                m68*-att-*
2605 Bull DPX2 (68k, System V release 3)             m68*-bull-sysv*
2606 decstation                                      mips-dec-* mips-little-*
2607 riscos                                          mips-*-riscos* mips-*-sysv*
2608 sonymips                                        mips-sony-*
2609 sysv                                    mips*-*-sysv4* (IRIX 5/6 not included)
2610
2611 *** Changes in GDB 6.1.1:
2612
2613 * TUI (Text-mode User Interface) built-in (also included in GDB 6.1)
2614
2615 The TUI (Text-mode User Interface) is now built as part of a default
2616 GDB configuration.  It is enabled by either selecting the TUI with the
2617 command line option "-i=tui" or by running the separate "gdbtui"
2618 program.  For more information on the TUI, see the manual "Debugging
2619 with GDB".
2620
2621 * Pending breakpoint support (also included in GDB 6.1)
2622
2623 Support has been added to allow you to specify breakpoints in shared
2624 libraries that have not yet been loaded.  If a breakpoint location
2625 cannot be found, and the "breakpoint pending" option is set to auto,
2626 GDB queries you if you wish to make the breakpoint pending on a future
2627 shared-library load.  If and when GDB resolves the breakpoint symbol,
2628 the pending breakpoint is removed as one or more regular breakpoints
2629 are created.
2630
2631 Pending breakpoints are very useful for GCJ Java debugging.
2632
2633 * Fixed ISO-C build problems
2634
2635 The files bfd/elf-bfd.h, gdb/dictionary.c and gdb/types.c contained
2636 non ISO-C code that stopped them being built using a more strict ISO-C
2637 compiler (e.g., IBM's C compiler).
2638
2639 * Fixed build problem on IRIX 5
2640
2641 Due to header problems with <sys/proc.h>, the file gdb/proc-api.c
2642 wasn't able to compile compile on an IRIX 5 system.
2643
2644 * Added execute permission to gdb/gdbserver/configure
2645
2646 The shell script gdb/testsuite/gdb.stabs/configure lacked execute
2647 permission.  This bug would cause configure to fail on a number of
2648 systems (Solaris, IRIX).  Ref: server/519.
2649
2650 * Fixed build problem on hpux2.0w-hp-hpux11.00 using the HP ANSI C compiler
2651
2652 Older HPUX ANSI C compilers did not accept variable array sizes.  somsolib.c
2653 has been updated to use constant array sizes.
2654
2655 * Fixed a panic in the DWARF Call Frame Info code on Solaris 2.7
2656
2657 GCC 3.3.2, on Solaris 2.7, includes the DW_EH_PE_funcrel encoding in
2658 its generated DWARF Call Frame Info.  This encoding was causing GDB to
2659 panic, that panic has been fixed.  Ref: gdb/1628.
2660
2661 * Fixed a problem when examining parameters in shared library code.
2662
2663 When examining parameters in optimized shared library code generated
2664 by a mainline GCC, GDB would incorrectly report ``Variable "..." is
2665 not available''.  GDB now correctly displays the variable's value.
2666
2667 *** Changes in GDB 6.1:
2668
2669 * Removed --with-mmalloc
2670
2671 Support for the mmalloc memory manager has been removed, as it
2672 conflicted with the internal gdb byte cache.
2673
2674 * Changes in AMD64 configurations
2675
2676 The AMD64 target now includes the %cs and %ss registers.  As a result
2677 the AMD64 remote protocol has changed; this affects the floating-point
2678 and SSE registers.  If you rely on those registers for your debugging,
2679 you should upgrade gdbserver on the remote side.
2680
2681 * Revised SPARC target
2682
2683 The SPARC target has been completely revised, incorporating the
2684 FreeBSD/sparc64 support that was added for GDB 6.0.  As a result
2685 support for LynxOS and SunOS 4 has been dropped.  Calling functions
2686 from within GDB on operating systems with a non-executable stack
2687 (Solaris, OpenBSD) now works.
2688
2689 * New C++ demangler
2690
2691 GDB has a new C++ demangler which does a better job on the mangled
2692 names generated by current versions of g++.  It also runs faster, so
2693 with this and other changes gdb should now start faster on large C++
2694 programs.
2695
2696 * DWARF 2 Location Expressions
2697
2698 GDB support for location expressions has been extended to support function
2699 arguments and frame bases.  Older versions of GDB could crash when they
2700 encountered these.
2701
2702 * C++ nested types and namespaces
2703
2704 GDB's support for nested types and namespaces in C++ has been
2705 improved, especially if you use the DWARF 2 debugging format.  (This
2706 is the default for recent versions of GCC on most platforms.)
2707 Specifically, if you have a class "Inner" defined within a class or
2708 namespace "Outer", then GDB realizes that the class's name is
2709 "Outer::Inner", not simply "Inner".  This should greatly reduce the
2710 frequency of complaints about not finding RTTI symbols.  In addition,
2711 if you are stopped at inside of a function defined within a namespace,
2712 GDB modifies its name lookup accordingly.
2713
2714 * New native configurations
2715
2716 NetBSD/amd64                                    x86_64-*-netbsd*
2717 OpenBSD/amd64                                   x86_64-*-openbsd*
2718 OpenBSD/alpha                                   alpha*-*-openbsd*
2719 OpenBSD/sparc                                   sparc-*-openbsd*
2720 OpenBSD/sparc64                                 sparc64-*-openbsd*
2721
2722 * New debugging protocols
2723
2724 M32R with SDI protocol                          m32r-*-elf*
2725
2726 * "set prompt-escape-char" command deleted.
2727
2728 The command "set prompt-escape-char" has been deleted.  This command,
2729 and its very obscure effet on GDB's prompt, was never documented,
2730 tested, nor mentioned in the NEWS file.
2731
2732 * OBSOLETE configurations and files
2733
2734 Configurations that have been declared obsolete in this release have
2735 been commented out.  Unless there is activity to revive these
2736 configurations, the next release of GDB will have their sources
2737 permanently REMOVED.
2738
2739 Sun 3, running SunOS 3                          m68*-*-sunos3*
2740 Sun 3, running SunOS 4                          m68*-*-sunos4*
2741 Sun 2, running SunOS 3                          m68000-*-sunos3*
2742 Sun 2, running SunOS 4                          m68000-*-sunos4*
2743 Motorola 680x0 running LynxOS                   m68*-*-lynxos*
2744 AT&T 3b1/Unix pc                                m68*-att-*
2745 Bull DPX2 (68k, System V release 3)             m68*-bull-sysv*
2746 decstation                                      mips-dec-* mips-little-*
2747 riscos                                          mips-*-riscos* mips-*-sysv*
2748 sonymips                                        mips-sony-*
2749 sysv                                    mips*-*-sysv4* (IRIX 5/6 not included)
2750
2751 * REMOVED configurations and files
2752
2753 SGI Irix-4.x                            mips-sgi-irix4  or iris4
2754 SGI Iris (MIPS) running Irix V3:        mips-sgi-irix   or  iris
2755 Z8000 simulator                         z8k-zilog-none    or z8ksim
2756 Matsushita MN10200 w/simulator                  mn10200-*-*
2757 H8/500 simulator                        h8500-hitachi-hms or h8500hms
2758 HP/PA running BSD                               hppa*-*-bsd*
2759 HP/PA running OSF/1                             hppa*-*-osf*
2760 HP/PA Pro target                                hppa*-*-pro*
2761 PMAX (MIPS) running Mach 3.0                    mips*-*-mach3*
2762 386BSD                                          i[3456]86-*-bsd*
2763 Sequent family                                  i[3456]86-sequent-sysv4*
2764                                                 i[3456]86-sequent-sysv*
2765                                                 i[3456]86-sequent-bsd*
2766 SPARC running LynxOS                            sparc-*-lynxos*
2767 SPARC running SunOS 4                           sparc-*-sunos4*
2768 Tsqware Sparclet                                sparclet-*-*
2769 Fujitsu SPARClite                       sparclite-fujitsu-none  or  sparclite
2770
2771 *** Changes in GDB 6.0:
2772
2773 * Objective-C
2774
2775 Support for debugging the Objective-C programming language has been
2776 integrated into GDB.
2777
2778 * New backtrace mechanism (includes DWARF 2 Call Frame Information).
2779
2780 DWARF 2's Call Frame Information makes available compiler generated
2781 information that more exactly describes the program's run-time stack.
2782 By using this information, GDB is able to provide more robust stack
2783 backtraces.
2784
2785 The i386, amd64 (nee, x86-64), Alpha, m68hc11, ia64, and m32r targets
2786 have been updated to use a new backtrace mechanism which includes
2787 DWARF 2 CFI support.
2788
2789 * Hosted file I/O.
2790
2791 GDB's remote protocol has been extended to include support for hosted
2792 file I/O (where the remote target uses GDB's file system).  See GDB's
2793 remote protocol documentation for details.
2794
2795 * All targets using the new architecture framework.
2796
2797 All of GDB's targets have been updated to use the new internal
2798 architecture framework.  The way is now open for future GDB releases
2799 to include cross-architecture native debugging support (i386 on amd64,
2800 ppc32 on ppc64).
2801
2802 * GNU/Linux's Thread Local Storage (TLS)
2803
2804 GDB now includes support for for the GNU/Linux implementation of
2805 per-thread variables.
2806
2807 * GNU/Linux's Native POSIX Thread Library (NPTL)
2808
2809 GDB's thread code has been updated to work with either the new
2810 GNU/Linux NPTL thread library or the older "LinuxThreads" library.
2811
2812 * Separate debug info.
2813
2814 GDB, in conjunction with BINUTILS, now supports a mechanism for
2815 automatically loading debug information from a separate file.  Instead
2816 of shipping full debug and non-debug versions of system libraries,
2817 system integrators can now instead ship just the stripped libraries
2818 and optional debug files.
2819
2820 * DWARF 2 Location Expressions
2821
2822 DWARF 2 Location Expressions allow the compiler to more completely
2823 describe the location of variables (even in optimized code) to the
2824 debugger.
2825
2826 GDB now includes preliminary support for location expressions (support
2827 for DW_OP_piece is still missing).
2828
2829 * Java
2830
2831 A number of long standing bugs that caused GDB to die while starting a
2832 Java application have been fixed.  GDB's Java support is now
2833 considered "useable".
2834
2835 * GNU/Linux support for fork, vfork, and exec.
2836
2837 The "catch fork", "catch exec", "catch vfork", and "set follow-fork-mode"
2838 commands are now implemented for GNU/Linux.  They require a 2.5.x or later
2839 kernel.
2840
2841 * GDB supports logging output to a file
2842
2843 There are two new commands, "set logging" and "show logging", which can be
2844 used to capture GDB's output to a file.
2845
2846 * The meaning of "detach" has changed for gdbserver
2847
2848 The "detach" command will now resume the application, as documented.  To
2849 disconnect from gdbserver and leave it stopped, use the new "disconnect"
2850 command.
2851
2852 * d10v, m68hc11 `regs' command deprecated
2853
2854 The `info registers' command has been updated so that it displays the
2855 registers using a format identical to the old `regs' command.
2856
2857 * Profiling support
2858
2859 A new command, "maint set profile on/off", has been added.  This command can
2860 be used to enable or disable profiling while running GDB, to profile a
2861 session or a set of commands.  In addition there is a new configure switch,
2862 "--enable-profiling", which will cause GDB to be compiled with profiling
2863 data, for more informative profiling results.
2864
2865 * Default MI syntax changed to "mi2".
2866
2867 The default MI (machine interface) syntax, enabled by the command line
2868 option "-i=mi", has been changed to "mi2".  The previous MI syntax,
2869 "mi1", can be enabled by specifying the option "-i=mi1".
2870
2871 Support for the original "mi0" syntax (included in GDB 5.0) has been
2872 removed.
2873
2874 Fix for gdb/192: removed extraneous space when displaying frame level.
2875 Fix for gdb/672: update changelist is now output in mi list format.
2876 Fix for gdb/702: a -var-assign that updates the value now shows up
2877                  in a subsequent -var-update.
2878
2879 * New native configurations.
2880
2881 FreeBSD/amd64                                   x86_64-*-freebsd*
2882
2883 * Multi-arched targets.
2884
2885 HP/PA HPUX11                                    hppa*-*-hpux*
2886 Renesas M32R/D w/simulator                      m32r-*-elf*
2887
2888 * OBSOLETE configurations and files
2889
2890 Configurations that have been declared obsolete in this release have
2891 been commented out.  Unless there is activity to revive these
2892 configurations, the next release of GDB will have their sources
2893 permanently REMOVED.
2894
2895 Z8000 simulator                         z8k-zilog-none    or z8ksim
2896 Matsushita MN10200 w/simulator                  mn10200-*-*
2897 H8/500 simulator                        h8500-hitachi-hms or h8500hms
2898 HP/PA running BSD                               hppa*-*-bsd*
2899 HP/PA running OSF/1                             hppa*-*-osf*
2900 HP/PA Pro target                                hppa*-*-pro*
2901 PMAX (MIPS) running Mach 3.0                    mips*-*-mach3*
2902 Sequent family                                  i[3456]86-sequent-sysv4*
2903                                                 i[3456]86-sequent-sysv*
2904                                                 i[3456]86-sequent-bsd*
2905 Tsqware Sparclet                                sparclet-*-*
2906 Fujitsu SPARClite                       sparclite-fujitsu-none  or  sparclite
2907
2908 * REMOVED configurations and files
2909
2910 V850EA ISA                              
2911 Motorola Delta 88000 running Sys V              m88k-motorola-sysv  or  delta88
2912 IBM AIX PS/2                                    i[3456]86-*-aix
2913 i386 running Mach 3.0                           i[3456]86-*-mach3*
2914 i386 running Mach                               i[3456]86-*-mach*
2915 i386 running OSF/1                              i[3456]86-*osf1mk*
2916 HP/Apollo 68k Family                            m68*-apollo*-sysv*,
2917                                                 m68*-apollo*-bsd*,
2918                                                 m68*-hp-bsd*, m68*-hp-hpux*
2919 Argonaut Risc Chip (ARC)                        arc-*-*
2920 Mitsubishi D30V                                 d30v-*-*
2921 Fujitsu FR30                                    fr30-*-elf*
2922 OS/9000                                         i[34]86-*-os9k
2923 I960 with MON960                                i960-*-coff
2924
2925 * MIPS $fp behavior changed
2926
2927 The convenience variable $fp, for the MIPS, now consistently returns
2928 the address of the current frame's base.  Previously, depending on the
2929 context, $fp could refer to either $sp or the current frame's base
2930 address.  See ``8.10 Registers'' in the manual ``Debugging with GDB:
2931 The GNU Source-Level Debugger''.
2932
2933 *** Changes in GDB 5.3:
2934
2935 * GNU/Linux shared library multi-threaded performance improved.
2936
2937 When debugging a multi-threaded application on GNU/Linux, GDB now uses
2938 `/proc', in preference to `ptrace' for memory reads.  This may result
2939 in an improvement in the start-up time of multi-threaded, shared
2940 library applications when run under GDB.  One GDB user writes: ``loads
2941 shared libs like mad''.
2942
2943 * ``gdbserver'' now supports multi-threaded applications on some targets
2944
2945 Support for debugging multi-threaded applications which use  
2946 the GNU/Linux LinuxThreads package has been added for
2947 arm*-*-linux*-gnu*, i[3456]86-*-linux*-gnu*, mips*-*-linux*-gnu*,
2948 powerpc*-*-linux*-gnu*, and sh*-*-linux*-gnu*.
2949
2950 * GDB now supports C/C++ preprocessor macros.
2951
2952 GDB now expands preprocessor macro invocations in C/C++ expressions,
2953 and provides various commands for showing macro definitions and how
2954 they expand.
2955
2956 The new command `macro expand EXPRESSION' expands any macro
2957 invocations in expression, and shows the result.
2958
2959 The new command `show macro MACRO-NAME' shows the definition of the
2960 macro named MACRO-NAME, and where it was defined.
2961
2962 Most compilers don't include information about macros in the debugging
2963 information by default.  In GCC 3.1, for example, you need to compile
2964 your program with the options `-gdwarf-2 -g3'.  If the macro
2965 information is present in the executable, GDB will read it.
2966
2967 * Multi-arched targets.
2968
2969 DEC Alpha (partial)                             alpha*-*-*
2970 DEC VAX (partial)                               vax-*-*
2971 NEC V850                                        v850-*-*
2972 National Semiconductor NS32000 (partial)        ns32k-*-*
2973 Motorola 68000 (partial)                        m68k-*-*
2974 Motorola MCORE                                  mcore-*-*
2975
2976 * New targets.
2977
2978 Fujitsu FRV architecture added by Red Hat       frv*-*-*
2979
2980
2981 * New native configurations
2982
2983 Alpha NetBSD                                    alpha*-*-netbsd*
2984 SH NetBSD                                       sh*-*-netbsdelf*
2985 MIPS NetBSD                                     mips*-*-netbsd*
2986 UltraSPARC NetBSD                               sparc64-*-netbsd*
2987
2988 * OBSOLETE configurations and files
2989
2990 Configurations that have been declared obsolete in this release have
2991 been commented out.  Unless there is activity to revive these
2992 configurations, the next release of GDB will have their sources
2993 permanently REMOVED.
2994
2995 Mitsubishi D30V                                 d30v-*-*
2996 OS/9000                                         i[34]86-*-os9k
2997 IBM AIX PS/2                                    i[3456]86-*-aix
2998 Fujitsu FR30                                    fr30-*-elf*
2999 Motorola Delta 88000 running Sys V              m88k-motorola-sysv  or  delta88
3000 Argonaut Risc Chip (ARC)                        arc-*-*
3001 i386 running Mach 3.0                           i[3456]86-*-mach3*
3002 i386 running Mach                               i[3456]86-*-mach*
3003 i386 running OSF/1                              i[3456]86-*osf1mk*
3004 HP/Apollo 68k Family                            m68*-apollo*-sysv*,
3005                                                 m68*-apollo*-bsd*,
3006                                                 m68*-hp-bsd*, m68*-hp-hpux*
3007 I960 with MON960                                i960-*-coff
3008
3009 * OBSOLETE languages
3010
3011 CHILL, a Pascal like language used by telecommunications companies.
3012
3013 * REMOVED configurations and files
3014
3015 AMD 29k family via UDI                          a29k-amd-udi, udi29k
3016 A29K VxWorks                                    a29k-*-vxworks
3017 AMD 29000 embedded, using EBMON                 a29k-none-none
3018 AMD 29000 embedded with COFF                    a29k-none-coff
3019 AMD 29000 embedded with a.out                   a29k-none-aout
3020
3021 testsuite/gdb.hp/gdb.threads-hp/                directory
3022
3023 * New command "set max-user-call-depth <nnn>"
3024
3025 This command allows the user to limit the call depth of user-defined
3026 commands.  The default is 1024.
3027
3028 * Changes in FreeBSD/i386 native debugging.
3029
3030 Support for the "generate-core-file" has been added.
3031
3032 * New commands "dump", "append", and "restore".
3033
3034 These commands allow data to be copied from target memory
3035 to a bfd-format or binary file (dump and append), and back
3036 from a file into memory (restore).
3037
3038 * Improved "next/step" support on multi-processor Alpha Tru64.
3039
3040 The previous single-step mechanism could cause unpredictable problems,
3041 including the random appearance of SIGSEGV or SIGTRAP signals. The use
3042 of a software single-step mechanism prevents this.
3043
3044 *** Changes in GDB 5.2.1:
3045
3046 * New targets.
3047
3048 Atmel AVR                                       avr*-*-*
3049
3050 * Bug fixes
3051
3052 gdb/182: gdb/323: gdb/237: On alpha, gdb was reporting:
3053 mdebugread.c:2443: gdb-internal-error: sect_index_data not initialized
3054 Fix, by Joel Brobecker imported from mainline.
3055
3056 gdb/439: gdb/291: On some ELF object files, gdb was reporting:
3057 dwarf2read.c:1072: gdb-internal-error: sect_index_text not initialize
3058 Fix, by Fred Fish, imported from mainline.
3059
3060 Dwarf2 .debug_frame & .eh_frame handler improved in many ways. 
3061 Surprisingly enough, it works now.
3062 By Michal Ludvig, imported from mainline.
3063
3064 i386 hardware watchpoint support: 
3065 avoid misses on second run for some targets.
3066 By Pierre Muller, imported from mainline.
3067
3068 *** Changes in GDB 5.2:
3069
3070 * New command "set trust-readonly-sections on[off]".
3071
3072 This command is a hint that tells gdb that read-only sections
3073 really are read-only (ie. that their contents will not change).
3074 In this mode, gdb will go to the object file rather than the
3075 target to read memory from read-only sections (such as ".text").
3076 This can be a significant performance improvement on some
3077 (notably embedded) targets.
3078
3079 * New command "generate-core-file" (or "gcore").
3080
3081 This new gdb command allows the user to drop a core file of the child
3082 process state at any time.  So far it's been implemented only for
3083 GNU/Linux and Solaris, but should be relatively easily ported to other
3084 hosts.  Argument is core file name (defaults to core.<pid>).
3085
3086 * New command line option
3087
3088 GDB now accepts --pid or -p followed by a process id.  
3089
3090 * Change in command line behavior -- corefiles vs. process ids.
3091
3092 There is a subtle behavior in the way in which GDB handles 
3093 command line arguments.  The first non-flag argument is always
3094 a program to debug, but the second non-flag argument may either
3095 be a corefile or a process id.  Previously, GDB would attempt to
3096 open the second argument as a corefile, and if that failed, would
3097 issue a superfluous error message and then attempt to attach it as
3098 a process.  Now, if the second argument begins with a non-digit, 
3099 it will be treated as a corefile.  If it begins with a digit, 
3100 GDB will attempt to attach it as a process, and if no such process
3101 is found, will then attempt to open it as a corefile.
3102
3103 * Changes in ARM configurations.
3104
3105 Multi-arch support is enabled for all ARM configurations.  The ARM/NetBSD
3106 configuration is fully multi-arch.
3107
3108 * New native configurations
3109
3110 ARM NetBSD                                      arm*-*-netbsd*
3111 x86 OpenBSD                                     i[3456]86-*-openbsd*
3112 AMD x86-64 running GNU/Linux                    x86_64-*-linux-*
3113 Sparc64 running FreeBSD                         sparc64-*-freebsd*
3114
3115 * New targets
3116
3117 Sanyo XStormy16                                 xstormy16-elf
3118
3119 * OBSOLETE configurations and files
3120
3121 Configurations that have been declared obsolete in this release have
3122 been commented out.  Unless there is activity to revive these
3123 configurations, the next release of GDB will have their sources
3124 permanently REMOVED.
3125
3126 AMD 29k family via UDI                          a29k-amd-udi, udi29k
3127 A29K VxWorks                                    a29k-*-vxworks
3128 AMD 29000 embedded, using EBMON                 a29k-none-none
3129 AMD 29000 embedded with COFF                    a29k-none-coff
3130 AMD 29000 embedded with a.out                   a29k-none-aout
3131
3132 testsuite/gdb.hp/gdb.threads-hp/                directory
3133
3134 * REMOVED configurations and files
3135
3136 TI TMS320C80                                    tic80-*-*
3137 WDC 65816                                       w65-*-*
3138 PowerPC Solaris                                 powerpcle-*-solaris*
3139 PowerPC Windows NT                              powerpcle-*-cygwin32
3140 PowerPC Netware                                 powerpc-*-netware*
3141 Harris/CXUX m88k                                m88*-harris-cxux*
3142 Most ns32k hosts and targets                    ns32k-*-mach3* ns32k-umax-*
3143                                                 ns32k-utek-sysv* ns32k-utek-*
3144 SunOS 4.0.Xi on i386                            i[3456]86-*-sunos*
3145 Ultracomputer (29K) running Sym1                a29k-nyu-sym1 a29k-*-kern*
3146 Sony NEWS (68K) running NEWSOS 3.x              m68*-sony-sysv news
3147 ISI Optimum V (3.05) under 4.3bsd.              m68*-isi-*
3148 Apple Macintosh (MPW) host and target           N/A host, powerpc-*-macos*
3149
3150 * Changes to command line processing
3151
3152 The new `--args' feature can be used to specify command-line arguments
3153 for the inferior from gdb's command line.
3154
3155 * Changes to key bindings
3156
3157 There is a new `operate-and-get-next' function bound to `C-o'.
3158
3159 *** Changes in GDB 5.1.1 
3160
3161 Fix compile problem on DJGPP.
3162
3163 Fix a problem with floating-point registers on the i386 being
3164 corrupted.
3165
3166 Fix to stop GDB crashing on .debug_str debug info.
3167
3168 Numerous documentation fixes.
3169
3170 Numerous testsuite fixes.
3171
3172 *** Changes in GDB 5.1:
3173
3174 * New native configurations
3175
3176 Alpha FreeBSD                                   alpha*-*-freebsd*
3177 x86 FreeBSD 3.x and 4.x                         i[3456]86*-freebsd[34]*
3178 MIPS GNU/Linux                                  mips*-*-linux*
3179 MIPS SGI Irix 6.x                               mips*-sgi-irix6*
3180 ia64 AIX                                        ia64-*-aix*
3181 s390 and s390x GNU/Linux                        {s390,s390x}-*-linux*
3182
3183 * New targets
3184
3185 Motorola 68HC11 and 68HC12                      m68hc11-elf
3186 CRIS                                            cris-axis
3187 UltraSparc running GNU/Linux                    sparc64-*-linux*
3188
3189 * OBSOLETE configurations and files
3190
3191 x86 FreeBSD before 2.2                          i[3456]86*-freebsd{1,2.[01]}*, 
3192 Harris/CXUX m88k                                m88*-harris-cxux*
3193 Most ns32k hosts and targets                    ns32k-*-mach3* ns32k-umax-*
3194                                                 ns32k-utek-sysv* ns32k-utek-*
3195 TI TMS320C80                                    tic80-*-*
3196 WDC 65816                                       w65-*-*
3197 Ultracomputer (29K) running Sym1                a29k-nyu-sym1 a29k-*-kern*
3198 PowerPC Solaris                                 powerpcle-*-solaris*
3199 PowerPC Windows NT                              powerpcle-*-cygwin32
3200 PowerPC Netware                                 powerpc-*-netware*
3201 SunOS 4.0.Xi on i386                            i[3456]86-*-sunos*
3202 Sony NEWS (68K) running NEWSOS 3.x              m68*-sony-sysv news
3203 ISI Optimum V (3.05) under 4.3bsd.              m68*-isi-*
3204 Apple Macintosh (MPW) host                      N/A
3205
3206 stuff.c (Program to stuff files into a specially prepared space in kdb)
3207 kdb-start.c (Main loop for the standalone kernel debugger)
3208
3209 Configurations that have been declared obsolete in this release have
3210 been commented out.  Unless there is activity to revive these
3211 configurations, the next release of GDB will have their sources
3212 permanently REMOVED.
3213
3214 * REMOVED configurations and files
3215
3216 Altos 3068                                      m68*-altos-*
3217 Convex                                          c1-*-*, c2-*-*
3218 Pyramid                                         pyramid-*-*
3219 ARM RISCix                                      arm-*-* (as host)
3220 Tahoe                                           tahoe-*-*
3221 ser-ocd.c                                       *-*-*
3222
3223 * GDB has been converted to ISO C.
3224
3225 GDB's source code has been converted to ISO C.  In particular, the
3226 sources are fully protoized, and rely on standard headers being
3227 present.
3228
3229 * Other news:
3230
3231 * "info symbol" works on platforms which use COFF, ECOFF, XCOFF, and NLM.
3232
3233 * The MI enabled by default.
3234
3235 The new machine oriented interface (MI) introduced in GDB 5.0 has been
3236 revised and enabled by default.  Packages which use GDB as a debugging
3237 engine behind a UI or another front end are encouraged to switch to
3238 using the GDB/MI interface, instead of the old annotations interface
3239 which is now deprecated.
3240
3241 * Support for debugging Pascal programs.
3242
3243 GDB now includes support for debugging Pascal programs.  The following
3244 main features are supported:
3245
3246     - Pascal-specific data types such as sets;
3247
3248     - automatic recognition of Pascal sources based on file-name
3249       extension;
3250
3251     - Pascal-style display of data types, variables, and functions;
3252
3253     - a Pascal expression parser.
3254
3255 However, some important features are not yet supported.
3256
3257     - Pascal string operations are not supported at all;
3258
3259     - there are some problems with boolean types;
3260
3261     - Pascal type hexadecimal constants are not supported
3262       because they conflict with the internal variables format;
3263
3264     - support for Pascal objects and classes is not full yet;
3265
3266     - unlike Pascal, GDB is case-sensitive for symbol names.
3267
3268 * Changes in completion.
3269
3270 Commands such as `shell', `run' and `set args', which pass arguments
3271 to inferior programs, now complete on file names, similar to what
3272 users expect at the shell prompt.
3273
3274 Commands which accept locations, such as `disassemble', `print',
3275 `breakpoint', `until', etc. now complete on filenames as well as
3276 program symbols.  Thus, if you type "break foob TAB", and the source
3277 files linked into the programs include `foobar.c', that file name will
3278 be one of the candidates for completion.  However, file names are not
3279 considered for completion after you typed a colon that delimits a file
3280 name from a name of a function in that file, as in "break foo.c:bar".
3281
3282 `set demangle-style' completes on available demangling styles.
3283
3284 * New platform-independent commands:
3285
3286 It is now possible to define a post-hook for a command as well as a
3287 hook that runs before the command.  For more details, see the
3288 documentation of `hookpost' in the GDB manual.
3289
3290 * Changes in GNU/Linux native debugging.
3291
3292 Support for debugging multi-threaded programs has been completely
3293 revised for all platforms except m68k and sparc.  You can now debug as
3294 many threads as your system allows you to have.
3295
3296 Attach/detach is supported for multi-threaded programs.
3297
3298 Support for SSE registers was added for x86.  This doesn't work for
3299 multi-threaded programs though.
3300
3301 * Changes in MIPS configurations.
3302
3303 Multi-arch support is enabled for all MIPS configurations.
3304
3305 GDB can now be built as native debugger on SGI Irix 6.x systems for
3306 debugging n32 executables.  (Debugging 64-bit executables is not yet
3307 supported.)
3308
3309 * Unified support for hardware watchpoints in all x86 configurations.
3310
3311 Most (if not all) native x86 configurations support hardware-assisted
3312 breakpoints and watchpoints in a unified manner.  This support
3313 implements debug register sharing between watchpoints, which allows to
3314 put a virtually infinite number of watchpoints on the same address,
3315 and also supports watching regions up to 16 bytes with several debug
3316 registers.
3317
3318 The new maintenance command `maintenance show-debug-regs' toggles
3319 debugging print-outs in functions that insert, remove, and test
3320 watchpoints and hardware breakpoints.
3321
3322 * Changes in the DJGPP native configuration.
3323
3324 New command ``info dos sysinfo'' displays assorted information about
3325 the CPU, OS, memory, and DPMI server.
3326
3327 New commands ``info dos gdt'', ``info dos ldt'', and ``info dos idt''
3328 display information about segment descriptors stored in GDT, LDT, and
3329 IDT.
3330
3331 New commands ``info dos pde'' and ``info dos pte'' display entries
3332 from Page Directory and Page Tables (for now works with CWSDPMI only).
3333 New command ``info dos address-pte'' displays the Page Table entry for
3334 a given linear address.
3335
3336 GDB can now pass command lines longer than 126 characters to the
3337 program being debugged (requires an update to the libdbg.a library
3338 which is part of the DJGPP development kit).
3339
3340 DWARF2 debug info is now supported.
3341
3342 It is now possible to `step' and `next' through calls to `longjmp'.
3343
3344 * Changes in documentation.
3345
3346 All GDB documentation was converted to GFDL, the GNU Free
3347 Documentation License.
3348
3349 Tracepoints-related commands are now fully documented in the GDB
3350 manual.
3351
3352 TUI, the Text-mode User Interface, is now documented in the manual.
3353
3354 Tracepoints-related commands are now fully documented in the GDB
3355 manual.
3356
3357 The "GDB Internals" manual now has an index.  It also includes
3358 documentation of `ui_out' functions, GDB coding standards, x86
3359 hardware watchpoints, and memory region attributes.
3360
3361 * GDB's version number moved to ``version.in''
3362
3363 The Makefile variable VERSION has been replaced by the file
3364 ``version.in''.  People creating GDB distributions should update the
3365 contents of this file.
3366
3367 * gdba.el deleted
3368
3369 GUD support is now a standard part of the EMACS distribution.
3370
3371 *** Changes in GDB 5.0:
3372
3373 * Improved support for debugging FP programs on x86 targets
3374
3375 Unified and much-improved support for debugging floating-point
3376 programs on all x86 targets.  In particular, ``info float'' now
3377 displays the FP registers in the same format on all x86 targets, with
3378 greater level of detail.
3379
3380 * Improvements and bugfixes in hardware-assisted watchpoints
3381
3382 It is now possible to watch array elements, struct members, and
3383 bitfields with hardware-assisted watchpoints.  Data-read watchpoints
3384 on x86 targets no longer erroneously trigger when the address is
3385 written.
3386
3387 * Improvements in the native DJGPP version of GDB
3388
3389 The distribution now includes all the scripts and auxiliary files
3390 necessary to build the native DJGPP version on MS-DOS/MS-Windows
3391 machines ``out of the box''.
3392
3393 The DJGPP version can now debug programs that use signals.  It is
3394 possible to catch signals that happened in the debuggee, deliver
3395 signals to it, interrupt it with Ctrl-C, etc.  (Previously, a signal
3396 would kill the program being debugged.)  Programs that hook hardware
3397 interrupts (keyboard, timer, etc.) can also be debugged.
3398
3399 It is now possible to debug DJGPP programs that redirect their
3400 standard handles or switch them to raw (as opposed to cooked) mode, or
3401 even close them.  The command ``run < foo > bar'' works as expected,
3402 and ``info terminal'' reports useful information about the debuggee's
3403 terminal, including raw/cooked mode, redirection, etc.
3404
3405 The DJGPP version now uses termios functions for console I/O, which
3406 enables debugging graphics programs.  Interrupting GDB with Ctrl-C
3407 also works.
3408
3409 DOS-style file names with drive letters are now fully supported by
3410 GDB.
3411
3412 It is now possible to debug DJGPP programs that switch their working
3413 directory.  It is also possible to rerun the debuggee any number of
3414 times without restarting GDB; thus, you can use the same setup,
3415 breakpoints, etc. for many debugging sessions.
3416
3417 * New native configurations
3418
3419 ARM GNU/Linux                                   arm*-*-linux*
3420 PowerPC GNU/Linux                               powerpc-*-linux*
3421
3422 * New targets
3423
3424 Motorola MCore                                  mcore-*-*
3425 x86 VxWorks                                     i[3456]86-*-vxworks*
3426 PowerPC VxWorks                                 powerpc-*-vxworks*
3427 TI TMS320C80                                    tic80-*-*
3428
3429 * OBSOLETE configurations
3430
3431 Altos 3068                                      m68*-altos-*
3432 Convex                                          c1-*-*, c2-*-*
3433 Pyramid                                         pyramid-*-*
3434 ARM RISCix                                      arm-*-* (as host)
3435 Tahoe                                           tahoe-*-*
3436
3437 Configurations that have been declared obsolete will be commented out,
3438 but the code will be left in place.  If there is no activity to revive
3439 these configurations before the next release of GDB, the sources will
3440 be permanently REMOVED.
3441
3442 * Gould support removed
3443
3444 Support for the Gould PowerNode and NP1 has been removed.
3445
3446 * New features for SVR4
3447
3448 On SVR4 native platforms (such as Solaris), if you attach to a process
3449 without first loading a symbol file, GDB will now attempt to locate and
3450 load symbols from the running process's executable file.
3451
3452 * Many C++ enhancements
3453
3454 C++ support has been greatly improved. Overload resolution now works properly
3455 in almost all cases. RTTI support is on the way.
3456
3457 * Remote targets can connect to a sub-program
3458
3459 A popen(3) style serial-device has been added.  This device starts a
3460 sub-process (such as a stand-alone simulator) and then communicates
3461 with that.  The sub-program to run is specified using the syntax
3462 ``|<program> <args>'' vis:
3463
3464         (gdb) set remotedebug 1
3465         (gdb) target extended-remote |mn10300-elf-sim program-args
3466
3467 * MIPS 64 remote protocol
3468
3469 A long standing bug in the mips64 remote protocol where by GDB
3470 expected certain 32 bit registers (ex SR) to be transfered as 32
3471 instead of 64 bits has been fixed.
3472
3473 The command ``set remote-mips64-transfers-32bit-regs on'' has been
3474 added to provide backward compatibility with older versions of GDB.
3475
3476 * ``set remotebinarydownload'' replaced by ``set remote X-packet''
3477
3478 The command ``set remotebinarydownload'' command has been replaced by
3479 ``set remote X-packet''.  Other commands in ``set remote'' family
3480 include ``set remote P-packet''.
3481
3482 * Breakpoint commands accept ranges.
3483
3484 The breakpoint commands ``enable'', ``disable'', and ``delete'' now
3485 accept a range of breakpoints, e.g. ``5-7''.  The tracepoint command
3486 ``tracepoint passcount'' also accepts a range of tracepoints.
3487
3488 * ``apropos'' command added.
3489
3490 The ``apropos'' command searches through command names and
3491 documentation strings, printing out matches, making it much easier to
3492 try to find a command that does what you are looking for.
3493
3494 * New MI interface
3495
3496 A new machine oriented interface (MI) has been added to GDB.  This
3497 interface is designed for debug environments running GDB as a separate
3498 process.  This is part of the long term libGDB project.  See the
3499 "GDB/MI" chapter of the GDB manual for further information.  It can be
3500 enabled by configuring with:
3501
3502         .../configure --enable-gdbmi
3503
3504 *** Changes in GDB-4.18:
3505
3506 * New native configurations
3507
3508 HP-UX 10.20                                     hppa*-*-hpux10.20
3509 HP-UX 11.x                                      hppa*-*-hpux11.0*
3510 M68K GNU/Linux                                  m68*-*-linux*
3511
3512 * New targets
3513
3514 Fujitsu FR30                                    fr30-*-elf*
3515 Intel StrongARM                                 strongarm-*-*
3516 Mitsubishi D30V                                 d30v-*-*
3517
3518 * OBSOLETE configurations
3519
3520 Gould PowerNode, NP1                            np1-*-*, pn-*-*
3521
3522 Configurations that have been declared obsolete will be commented out,
3523 but the code will be left in place.  If there is no activity to revive
3524 these configurations before the next release of GDB, the sources will
3525 be permanently REMOVED.
3526
3527 * ANSI/ISO C
3528
3529 As a compatibility experiment, GDB's source files buildsym.h and
3530 buildsym.c have been converted to pure standard C, no longer
3531 containing any K&R compatibility code.  We believe that all systems in
3532 use today either come with a standard C compiler, or have a GCC port
3533 available.  If this is not true, please report the affected
3534 configuration to bug-gdb@gnu.org immediately.  See the README file for
3535 information about getting a standard C compiler if you don't have one
3536 already.
3537
3538 * Readline 2.2
3539
3540 GDB now uses readline 2.2.
3541
3542 * set extension-language
3543
3544 You can now control the mapping between filename extensions and source
3545 languages by using the `set extension-language' command.  For instance,
3546 you can ask GDB to treat .c files as C++ by saying
3547         set extension-language .c c++
3548 The command `info extensions' lists all of the recognized extensions
3549 and their associated languages.
3550
3551 * Setting processor type for PowerPC and RS/6000
3552
3553 When GDB is configured for a powerpc*-*-* or an rs6000*-*-* target,
3554 you can use the `set processor' command to specify what variant of the
3555 PowerPC family you are debugging.  The command
3556
3557         set processor NAME
3558
3559 sets the PowerPC/RS6000 variant to NAME.  GDB knows about the
3560 following PowerPC and RS6000 variants:
3561
3562   ppc-uisa  PowerPC UISA - a PPC processor as viewed by user-level code
3563   rs6000    IBM RS6000 ("POWER") architecture, user-level view
3564   403       IBM PowerPC 403
3565   403GC     IBM PowerPC 403GC
3566   505       Motorola PowerPC 505
3567   860       Motorola PowerPC 860 or 850
3568   601       Motorola PowerPC 601
3569   602       Motorola PowerPC 602
3570   603       Motorola/IBM PowerPC 603 or 603e
3571   604       Motorola PowerPC 604 or 604e
3572   750       Motorola/IBM PowerPC 750 or 750
3573
3574 At the moment, this command just tells GDB what to name the
3575 special-purpose processor registers.  Since almost all the affected
3576 registers are inaccessible to user-level programs, this command is
3577 only useful for remote debugging in its present form.
3578
3579 * HP-UX support
3580
3581 Thanks to a major code donation from Hewlett-Packard, GDB now has much
3582 more extensive support for HP-UX.  Added features include shared
3583 library support, kernel threads and hardware watchpoints for 11.00,
3584 support for HP's ANSI C and C++ compilers, and a compatibility mode
3585 for xdb and dbx commands.
3586
3587 * Catchpoints
3588
3589 HP's donation includes the new concept of catchpoints, which is a
3590 generalization of the old catch command.  On HP-UX, it is now possible
3591 to catch exec, fork, and vfork, as well as library loading.
3592
3593 This means that the existing catch command has changed; its first
3594 argument now specifies the type of catch to be set up.  See the
3595 output of "help catch" for a list of catchpoint types.
3596
3597 * Debugging across forks
3598
3599 On HP-UX, you can choose which process to debug when a fork() happens
3600 in the inferior.
3601
3602 * TUI
3603
3604 HP has donated a curses-based terminal user interface (TUI).  To get
3605 it, build with --enable-tui.  Although this can be enabled for any
3606 configuration, at present it only works for native HP debugging.
3607
3608 * GDB remote protocol additions
3609
3610 A new protocol packet 'X' that writes binary data is now available.
3611 Default behavior is to try 'X', then drop back to 'M' if the stub
3612 fails to respond.  The settable variable `remotebinarydownload'
3613 allows explicit control over the use of 'X'.
3614
3615 For 64-bit targets, the memory packets ('M' and 'm') can now contain a
3616 full 64-bit address.  The command
3617
3618         set remoteaddresssize 32
3619
3620 can be used to revert to the old behaviour.  For existing remote stubs
3621 the change should not be noticed, as the additional address information
3622 will be discarded.
3623
3624 In order to assist in debugging stubs, you may use the maintenance
3625 command `packet' to send any text string to the stub.  For instance,
3626
3627         maint packet heythere
3628
3629 sends the packet "$heythere#<checksum>".  Note that it is very easy to
3630 disrupt a debugging session by sending the wrong packet at the wrong
3631 time.
3632
3633 The compare-sections command allows you to compare section data on the
3634 target to what is in the executable file without uploading or
3635 downloading, by comparing CRC checksums.
3636
3637 * Tracing can collect general expressions
3638
3639 You may now collect general expressions at tracepoints.  This requires
3640 further additions to the target-side stub; see tracepoint.c and
3641 doc/agentexpr.texi for further details.
3642
3643 * mask-address variable for Mips
3644
3645 For Mips targets, you may control the zeroing of the upper 32 bits of
3646 a 64-bit address by entering `set mask-address on'.  This is mainly
3647 of interest to users of embedded R4xxx and R5xxx processors.
3648
3649 * Higher serial baud rates
3650
3651 GDB's serial code now allows you to specify baud rates 57600, 115200,
3652 230400, and 460800 baud.  (Note that your host system may not be able
3653 to achieve all of these rates.)
3654
3655 * i960 simulator
3656
3657 The i960 configuration now includes an initial implementation of a
3658 builtin simulator, contributed by Jim Wilson.
3659
3660
3661 *** Changes in GDB-4.17:
3662
3663 * New native configurations
3664
3665 Alpha GNU/Linux                                 alpha*-*-linux*
3666 Unixware 2.x                                    i[3456]86-unixware2*
3667 Irix 6.x                                        mips*-sgi-irix6*
3668 PowerPC GNU/Linux                               powerpc-*-linux*
3669 PowerPC Solaris                                 powerpcle-*-solaris*
3670 Sparc GNU/Linux                                 sparc-*-linux*
3671 Motorola sysV68 R3V7.1                          m68k-motorola-sysv
3672
3673 * New targets
3674
3675 Argonaut Risc Chip (ARC)                        arc-*-*
3676 Hitachi H8/300S                                 h8300*-*-*
3677 Matsushita MN10200 w/simulator                  mn10200-*-*
3678 Matsushita MN10300 w/simulator                  mn10300-*-*
3679 MIPS NEC VR4100                                 mips64*vr4100*{,el}-*-elf*
3680 MIPS NEC VR5000                                 mips64*vr5000*{,el}-*-elf*
3681 MIPS Toshiba TX39                               mips64*tx39*{,el}-*-elf*
3682 Mitsubishi D10V w/simulator                     d10v-*-*
3683 Mitsubishi M32R/D w/simulator                   m32r-*-elf*
3684 Tsqware Sparclet                                sparclet-*-*
3685 NEC V850 w/simulator                            v850-*-*
3686
3687 * New debugging protocols
3688
3689 ARM with RDI protocol                           arm*-*-*
3690 M68K with dBUG monitor                          m68*-*-{aout,coff,elf}
3691 DDB and LSI variants of PMON protocol           mips*-*-*
3692 PowerPC with DINK32 monitor                     powerpc{,le}-*-eabi
3693 PowerPC with SDS protocol                       powerpc{,le}-*-eabi
3694 Macraigor OCD (Wiggler) devices                 powerpc{,le}-*-eabi
3695
3696 * DWARF 2
3697
3698 All configurations can now understand and use the DWARF 2 debugging
3699 format.  The choice is automatic, if the symbol file contains DWARF 2
3700 information.
3701
3702 * Java frontend
3703
3704 GDB now includes basic Java language support.  This support is
3705 only useful with Java compilers that produce native machine code.
3706
3707 * solib-absolute-prefix and solib-search-path
3708
3709 For SunOS and SVR4 shared libraries, you may now set the prefix for
3710 loading absolute shared library symbol files, and the search path for
3711 locating non-absolute shared library symbol files.
3712
3713 * Live range splitting
3714
3715 GDB can now effectively debug code for which GCC has performed live
3716 range splitting as part of its optimization.  See gdb/doc/LRS for
3717 more details on the expected format of the stabs information.
3718
3719 * Hurd support
3720
3721 GDB's support for the GNU Hurd, including thread debugging, has been
3722 updated to work with current versions of the Hurd.
3723
3724 * ARM Thumb support
3725
3726 GDB's ARM target configuration now handles the ARM7T (Thumb) 16-bit
3727 instruction set.  ARM GDB automatically detects when Thumb
3728 instructions are in use, and adjusts disassembly and backtracing
3729 accordingly.
3730
3731 * MIPS16 support
3732
3733 GDB's MIPS target configurations now handle the MIP16 16-bit
3734 instruction set.
3735
3736 * Overlay support
3737
3738 GDB now includes support for overlays; if an executable has been
3739 linked such that multiple sections are based at the same address, GDB
3740 will decide which section to use for symbolic info.  You can choose to
3741 control the decision manually, using overlay commands, or implement
3742 additional target-side support and use "overlay load-target" to bring
3743 in the overlay mapping.  Do "help overlay" for more detail.
3744
3745 * info symbol
3746
3747 The command "info symbol <address>" displays information about
3748 the symbol at the specified address.
3749
3750 * Trace support
3751
3752 The standard remote protocol now includes an extension that allows
3753 asynchronous collection and display of trace data.  This requires
3754 extensive support in the target-side debugging stub.  Tracing mode
3755 includes a new interaction mode in GDB and new commands: see the
3756 file tracepoint.c for more details.
3757
3758 * MIPS simulator
3759
3760 Configurations for embedded MIPS now include a simulator contributed
3761 by Cygnus Solutions.  The simulator supports the instruction sets
3762 of most MIPS variants.
3763
3764 * Sparc simulator
3765
3766 Sparc configurations may now include the ERC32 simulator contributed
3767 by the European Space Agency.  The simulator is not built into
3768 Sparc targets by default; configure with --enable-sim to include it.
3769
3770 * set architecture
3771
3772 For target configurations that may include multiple variants of a
3773 basic architecture (such as MIPS and SH), you may now set the
3774 architecture explicitly.  "set arch" sets, "info arch" lists
3775 the possible architectures.
3776
3777 *** Changes in GDB-4.16:
3778
3779 * New native configurations
3780
3781 Windows 95, x86 Windows NT                      i[345]86-*-cygwin32
3782 M68K NetBSD                                     m68k-*-netbsd*
3783 PowerPC AIX 4.x                                 powerpc-*-aix*
3784 PowerPC MacOS                                   powerpc-*-macos*
3785 PowerPC Windows NT                              powerpcle-*-cygwin32
3786 RS/6000 AIX 4.x                                 rs6000-*-aix4*
3787
3788 * New targets
3789
3790 ARM with RDP protocol                           arm-*-*
3791 I960 with MON960                                i960-*-coff
3792 MIPS VxWorks                                    mips*-*-vxworks*
3793 MIPS VR4300 with PMON                           mips64*vr4300{,el}-*-elf*
3794 PowerPC with PPCBUG monitor                     powerpc{,le}-*-eabi*
3795 Hitachi SH3                                     sh-*-*
3796 Matra Sparclet                                  sparclet-*-*
3797
3798 * PowerPC simulator
3799
3800 The powerpc-eabi configuration now includes the PSIM simulator,
3801 contributed by Andrew Cagney, with assistance from Mike Meissner.
3802 PSIM is a very elaborate model of the PowerPC, including not only
3803 basic instruction set execution, but also details of execution unit
3804 performance and I/O hardware.  See sim/ppc/README for more details.
3805
3806 * Solaris 2.5
3807
3808 GDB now works with Solaris 2.5.
3809
3810 * Windows 95/NT native
3811
3812 GDB will now work as a native debugger on Windows 95 and Windows NT.
3813 To build it from source, you must use the "gnu-win32" environment,
3814 which uses a DLL to emulate enough of Unix to run the GNU tools.
3815 Further information, binaries, and sources are available at
3816 ftp.cygnus.com, under pub/gnu-win32.
3817
3818 * dont-repeat command
3819
3820 If a user-defined command includes the command `dont-repeat', then the
3821 command will not be repeated if the user just types return.  This is
3822 useful if the command is time-consuming to run, so that accidental
3823 extra keystrokes don't run the same command many times.
3824
3825 * Send break instead of ^C
3826
3827 The standard remote protocol now includes an option to send a break
3828 rather than a ^C to the target in order to interrupt it.  By default,
3829 GDB will send ^C; to send a break, set the variable `remotebreak' to 1.
3830
3831 * Remote protocol timeout
3832
3833 The standard remote protocol includes a new variable `remotetimeout'
3834 that allows you to set the number of seconds before GDB gives up trying
3835 to read from the target.  The default value is 2.
3836
3837 * Automatic tracking of dynamic object loading (HPUX and Solaris only)
3838
3839 By default GDB will automatically keep track of objects as they are
3840 loaded and unloaded by the dynamic linker.  By using the command `set
3841 stop-on-solib-events 1' you can arrange for GDB to stop the inferior
3842 when shared library events occur, thus allowing you to set breakpoints
3843 in shared libraries which are explicitly loaded by the inferior.
3844
3845 Note this feature does not work on hpux8.  On hpux9 you must link
3846 /usr/lib/end.o into your program.  This feature should work
3847 automatically on hpux10.
3848
3849 * Irix 5.x hardware watchpoint support
3850
3851 Irix 5 configurations now support the use of hardware watchpoints.
3852
3853 * Mips protocol "SYN garbage limit"
3854
3855 When debugging a Mips target using the `target mips' protocol, you
3856 may set the number of characters that GDB will ignore by setting
3857 the `syn-garbage-limit'.  A value of -1 means that GDB will ignore
3858 every character.  The default value is 1050.
3859
3860 * Recording and replaying remote debug sessions
3861
3862 If you set `remotelogfile' to the name of a file, gdb will write to it
3863 a recording of a remote debug session.  This recording may then be
3864 replayed back to gdb using "gdbreplay".  See gdbserver/README for
3865 details.  This is useful when you have a problem with GDB while doing
3866 remote debugging; you can make a recording of the session and send it
3867 to someone else, who can then recreate the problem.
3868
3869 * Speedups for remote debugging
3870
3871 GDB includes speedups for downloading and stepping MIPS systems using
3872 the IDT monitor, fast downloads to the Hitachi SH E7000 emulator,
3873 and more efficient S-record downloading.
3874
3875 * Memory use reductions and statistics collection
3876
3877 GDB now uses less memory and reports statistics about memory usage.
3878 Try the `maint print statistics' command, for example.
3879
3880 *** Changes in GDB-4.15:
3881
3882 * Psymtabs for XCOFF
3883
3884 The symbol reader for AIX GDB now uses partial symbol tables.  This
3885 can greatly improve startup time, especially for large executables.
3886
3887 * Remote targets use caching
3888
3889 Remote targets now use a data cache to speed up communication with the
3890 remote side.  The data cache could lead to incorrect results because
3891 it doesn't know about volatile variables, thus making it impossible to
3892 debug targets which use memory mapped I/O devices. `set remotecache
3893 off' turns the the data cache off.
3894
3895 * Remote targets may have threads
3896
3897 The standard remote protocol now includes support for multiple threads
3898 in the target system, using new protocol commands 'H' and 'T'.  See
3899 gdb/remote.c for details.
3900
3901 * NetROM support
3902
3903 If GDB is configured with `--enable-netrom', then it will include
3904 support for the NetROM ROM emulator from XLNT Designs.  The NetROM
3905 acts as though it is a bank of ROM on the target board, but you can
3906 write into it over the network.  GDB's support consists only of
3907 support for fast loading into the emulated ROM; to debug, you must use
3908 another protocol, such as standard remote protocol.  The usual
3909 sequence is something like
3910
3911         target nrom <netrom-hostname>
3912         load <prog>
3913         target remote <netrom-hostname>:1235
3914
3915 * Macintosh host
3916
3917 GDB now includes support for the Apple Macintosh, as a host only.  It
3918 may be run as either an MPW tool or as a standalone application, and
3919 it can debug through the serial port.  All the usual GDB commands are
3920 available, but to the target command, you must supply "serial" as the
3921 device type instead of "/dev/ttyXX".  See mpw-README in the main
3922 directory for more information on how to build.  The MPW configuration
3923 scripts */mpw-config.in support only a few targets, and only the
3924 mips-idt-ecoff target has been tested.
3925
3926 * Autoconf
3927
3928 GDB configuration now uses autoconf.  This is not user-visible,
3929 but does simplify configuration and building.
3930
3931 * hpux10
3932
3933 GDB now supports hpux10.
3934
3935 *** Changes in GDB-4.14:
3936
3937 * New native configurations
3938
3939 x86 FreeBSD                                     i[345]86-*-freebsd
3940 x86 NetBSD                                      i[345]86-*-netbsd
3941 NS32k NetBSD                                    ns32k-*-netbsd
3942 Sparc NetBSD                                    sparc-*-netbsd
3943
3944 * New targets
3945
3946 A29K VxWorks                                    a29k-*-vxworks
3947 HP PA PRO embedded (WinBond W89K & Oki OP50N)   hppa*-*-pro*
3948 CPU32 EST-300 emulator                          m68*-*-est*
3949 PowerPC ELF                                     powerpc-*-elf
3950 WDC 65816                                       w65-*-*
3951
3952 * Alpha OSF/1 support for procfs
3953
3954 GDB now supports procfs under OSF/1-2.x and higher, which makes it
3955 possible to attach to running processes.  As the mounting of the /proc
3956 filesystem is optional on the Alpha, GDB automatically determines
3957 the availability of /proc during startup.  This can lead to problems
3958 if /proc is unmounted after GDB has been started.
3959
3960 * Arguments to user-defined commands
3961
3962 User commands may accept up to 10 arguments separated by whitespace.
3963 Arguments are accessed within the user command via $arg0..$arg9.  A
3964 trivial example:
3965 define adder
3966   print $arg0 + $arg1 + $arg2
3967
3968 To execute the command use:
3969 adder 1 2 3
3970
3971 Defines the command "adder" which prints the sum of its three arguments.
3972 Note the arguments are text substitutions, so they may reference variables,
3973 use complex expressions, or even perform inferior function calls.
3974
3975 * New `if' and `while' commands
3976
3977 This makes it possible to write more sophisticated user-defined
3978 commands.  Both commands take a single argument, which is the
3979 expression to evaluate, and must be followed by the commands to
3980 execute, one per line, if the expression is nonzero, the list being
3981 terminated by the word `end'.  The `if' command list may include an
3982 `else' word, which causes the following commands to be executed only
3983 if the expression is zero.
3984
3985 * Fortran source language mode
3986
3987 GDB now includes partial support for Fortran 77.  It will recognize
3988 Fortran programs and can evaluate a subset of Fortran expressions, but
3989 variables and functions may not be handled correctly.  GDB will work
3990 with G77, but does not yet know much about symbols emitted by other
3991 Fortran compilers.
3992
3993 * Better HPUX support
3994
3995 Most debugging facilities now work on dynamic executables for HPPAs
3996 running hpux9 or later.  You can attach to running dynamically linked
3997 processes, but by default the dynamic libraries will be read-only, so
3998 for instance you won't be able to put breakpoints in them.  To change
3999 that behavior do the following before running the program:
4000
4001         adb -w a.out
4002         __dld_flags?W 0x5
4003         control-d
4004
4005 This will cause the libraries to be mapped private and read-write.
4006 To revert to the normal behavior, do this:
4007
4008         adb -w a.out
4009         __dld_flags?W 0x4
4010         control-d
4011
4012 You cannot set breakpoints or examine data in the library until after
4013 the library is loaded if the function/data symbols do not have
4014 external linkage.
4015
4016 GDB can now also read debug symbols produced by the HP C compiler on
4017 HPPAs (sorry, no C++, Fortran or 68k support).
4018
4019 * Target byte order now dynamically selectable
4020
4021 You can choose which byte order to use with a target system, via the
4022 commands "set endian big" and "set endian little", and you can see the
4023 current setting by using "show endian".  You can also give the command
4024 "set endian auto", in which case GDB will use the byte order
4025 associated with the executable.  Currently, only embedded MIPS
4026 configurations support dynamic selection of target byte order.
4027
4028 * New DOS host serial code
4029
4030 This version uses DPMI interrupts to handle buffered I/O, so you
4031 no longer need to run asynctsr when debugging boards connected to
4032 a PC's serial port.
4033
4034 *** Changes in GDB-4.13:
4035
4036 * New "complete" command
4037
4038 This lists all the possible completions for the rest of the line, if it
4039 were to be given as a command itself.  This is intended for use by emacs.
4040
4041 * Trailing space optional in prompt
4042
4043 "set prompt" no longer adds a space for you after the prompt you set.  This
4044 allows you to set a prompt which ends in a space or one that does not.
4045
4046 * Breakpoint hit counts
4047
4048 "info break" now displays a count of the number of times the breakpoint
4049 has been hit.  This is especially useful in conjunction with "ignore"; you
4050 can ignore a large number of breakpoint hits, look at the breakpoint info
4051 to see how many times the breakpoint was hit, then run again, ignoring one
4052 less than that number, and this will get you quickly to the last hit of
4053 that breakpoint.
4054
4055 * Ability to stop printing at NULL character
4056
4057 "set print null-stop" will cause GDB to stop printing the characters of
4058 an array when the first NULL is encountered.  This is useful when large
4059 arrays actually contain only short strings.
4060
4061 * Shared library breakpoints
4062
4063 In SunOS 4.x, SVR4, and Alpha OSF/1 configurations, you can now set
4064 breakpoints in shared libraries before the executable is run.
4065
4066 * Hardware watchpoints
4067
4068 There is a new hardware breakpoint for the watch command for sparclite
4069 targets.  See gdb/sparclite/hw_breakpoint.note.
4070
4071 Hardware watchpoints are also now supported under GNU/Linux.
4072  
4073 * Annotations
4074
4075 Annotations have been added.  These are for use with graphical interfaces,
4076 and are still experimental.  Currently only gdba.el uses these.
4077
4078 * Improved Irix 5 support
4079
4080 GDB now works properly with Irix 5.2.
4081
4082 * Improved HPPA support
4083
4084 GDB now works properly with the latest GCC and GAS.
4085
4086 * New native configurations
4087
4088 Sequent PTX4                            i[34]86-sequent-ptx4
4089 HPPA running OSF/1                      hppa*-*-osf*
4090 Atari TT running SVR4                   m68*-*-sysv4*
4091 RS/6000 LynxOS                          rs6000-*-lynxos*
4092
4093 * New targets
4094
4095 OS/9000                                 i[34]86-*-os9k
4096 MIPS R4000                              mips64*{,el}-*-{ecoff,elf}
4097 Sparc64                                 sparc64-*-*
4098
4099 * Hitachi SH7000 and E7000-PC ICE support
4100
4101 There is now support for communicating with the Hitachi E7000-PC ICE.
4102 This is available automatically when GDB is configured for the SH.
4103
4104 * Fixes
4105
4106 As usual, a variety of small fixes and improvements, both generic
4107 and configuration-specific.  See the ChangeLog for more detail.
4108
4109 *** Changes in GDB-4.12:
4110
4111 * Irix 5 is now supported
4112
4113 * HPPA support
4114
4115 GDB-4.12 on the HPPA has a number of changes which make it unable
4116 to debug the output from the currently released versions of GCC and
4117 GAS (GCC 2.5.8 and GAS-2.2 or PAGAS-1.36).  Until the next major release
4118 of GCC and GAS, versions of these tools designed to work with GDB-4.12
4119 can be retrieved via anonymous ftp from jaguar.cs.utah.edu:/dist.
4120
4121
4122 *** Changes in GDB-4.11:
4123
4124 * User visible changes:
4125
4126 * Remote Debugging
4127
4128 The "set remotedebug" option is now consistent between the mips remote
4129 target, remote targets using the gdb-specific protocol, UDI (AMD's
4130 debug protocol for the 29k) and the 88k bug monitor.  It is now an
4131 integer specifying a debug level (normally 0 or 1, but 2 means more
4132 debugging info for the mips target).
4133
4134 * DEC Alpha native support
4135
4136 GDB now works on the DEC Alpha.  GCC 2.4.5 does not produce usable
4137 debug info, but GDB works fairly well with the DEC compiler and should
4138 work with a future GCC release.  See the README file for a few
4139 Alpha-specific notes.
4140
4141 * Preliminary thread implementation
4142
4143 GDB now has preliminary thread support for both SGI/Irix and LynxOS.
4144
4145 * LynxOS native and target support for 386
4146
4147 This release has been hosted on LynxOS 2.2, and also can be configured
4148 to remotely debug programs running under LynxOS (see gdb/gdbserver/README
4149 for details).
4150
4151 * Improvements in C++ mangling/demangling.
4152
4153 This release has much better g++ debugging, specifically in name 
4154 mangling/demangling, virtual function calls, print virtual table,
4155 call methods, ...etc.
4156
4157 *** Changes in GDB-4.10:
4158
4159  * User visible changes:
4160
4161 Remote debugging using the GDB-specific (`target remote') protocol now
4162 supports the `load' command.  This is only useful if you have some
4163 other way of getting the stub to the target system, and you can put it
4164 somewhere in memory where it won't get clobbered by the download.
4165
4166 Filename completion now works.
4167
4168 When run under emacs mode, the "info line" command now causes the
4169 arrow to point to the line specified.  Also, "info line" prints
4170 addresses in symbolic form (as well as hex).
4171
4172 All vxworks based targets now support a user settable option, called
4173 vxworks-timeout.  This option represents the number of seconds gdb
4174 should wait for responses to rpc's.  You might want to use this if
4175 your vxworks target is, perhaps, a slow software simulator or happens
4176 to be on the far side of a thin network line.
4177
4178  * DEC alpha support
4179
4180 This release contains support for using a DEC alpha as a GDB host for
4181 cross debugging.  Native alpha debugging is not supported yet.
4182
4183
4184 *** Changes in GDB-4.9:
4185
4186  * Testsuite
4187
4188 This is the first GDB release which is accompanied by a matching testsuite.
4189 The testsuite requires installation of dejagnu, which should be available
4190 via ftp from most sites that carry GNU software.
4191
4192  * C++ demangling
4193
4194 'Cfront' style demangling has had its name changed to 'ARM' style, to
4195 emphasize that it was written from the specifications in the C++ Annotated
4196 Reference Manual, not necessarily to be compatible with AT&T cfront.  Despite
4197 disclaimers, it still generated too much confusion with users attempting to
4198 use gdb with AT&T cfront.
4199
4200  * Simulators
4201
4202 GDB now uses a standard remote interface to a simulator library.
4203 So far, the library contains simulators for the Zilog Z8001/2, the
4204 Hitachi H8/300, H8/500 and Super-H.
4205
4206  * New targets supported
4207
4208 H8/300 simulator                        h8300-hitachi-hms or h8300hms
4209 H8/500 simulator                        h8500-hitachi-hms or h8500hms
4210 SH simulator                            sh-hitachi-hms    or sh
4211 Z8000 simulator                         z8k-zilog-none    or z8ksim
4212 IDT MIPS board over serial line         mips-idt-ecoff
4213
4214 Cross-debugging to GO32 targets is supported.  It requires a custom
4215 version of the i386-stub.c module which is integrated with the 
4216 GO32 memory extender.
4217
4218  * New remote protocols
4219
4220 MIPS remote debugging protocol.
4221
4222  * New source languages supported
4223
4224 This version includes preliminary support for Chill, a Pascal like language
4225 used by telecommunications companies.  Chill support is also being integrated
4226 into the GNU compiler, but we don't know when it will be publically available.
4227
4228
4229 *** Changes in GDB-4.8:
4230
4231  * HP Precision Architecture supported
4232
4233 GDB now supports HP PA-RISC machines running HPUX.  A preliminary
4234 version of this support was available as a set of patches from the
4235 University of Utah.  GDB does not support debugging of programs
4236 compiled with the HP compiler, because HP will not document their file
4237 format.  Instead, you must use GCC (version 2.3.2 or later) and PA-GAS
4238 (as available from jaguar.cs.utah.edu:/dist/pa-gas.u4.tar.Z).
4239
4240 Many problems in the preliminary version have been fixed.
4241
4242  * Faster and better demangling
4243
4244 We have improved template demangling and fixed numerous bugs in the GNU style
4245 demangler.  It can now handle type modifiers such as `static' or `const'.  Wide
4246 character types (wchar_t) are now supported.  Demangling of each symbol is now
4247 only done once, and is cached when the symbol table for a file is read in.
4248 This results in a small increase in memory usage for C programs, a moderate
4249 increase in memory usage for C++ programs, and a fantastic speedup in
4250 symbol lookups.
4251
4252 `Cfront' style demangling still doesn't work with AT&T cfront.  It was written
4253 from the specifications in the Annotated Reference Manual, which AT&T's
4254 compiler does not actually implement.
4255
4256  * G++ multiple inheritance compiler problem
4257
4258 In the 2.3.2 release of gcc/g++, how the compiler resolves multiple
4259 inheritance lattices was reworked to properly discover ambiguities.  We
4260 recently found an example which causes this new algorithm to fail in a
4261 very subtle way, producing bad debug information for those classes.
4262 The file 'gcc.patch' (in this directory) can be applied to gcc to
4263 circumvent the problem.  A future GCC release will contain a complete
4264 fix.
4265
4266 The previous G++ debug info problem (mentioned below for the gdb-4.7
4267 release) is fixed in gcc version 2.3.2.
4268
4269  * Improved configure script
4270
4271 The `configure' script will now attempt to guess your system type if
4272 you don't supply a host system type.  The old scheme of supplying a
4273 host system triplet is preferable over using this.  All the magic is
4274 done in the new `config.guess' script.  Examine it for details.
4275
4276 We have also brought our configure script much more in line with the FSF's
4277 version.  It now supports the --with-xxx options.  In particular,
4278 `--with-minimal-bfd' can be used to make the GDB binary image smaller.
4279 The resulting GDB will not be able to read arbitrary object file formats --
4280 only the format ``expected'' to be used on the configured target system.
4281 We hope to make this the default in a future release.
4282
4283  * Documentation improvements
4284
4285 There's new internal documentation on how to modify GDB, and how to
4286 produce clean changes to the code.  We implore people to read it
4287 before submitting changes.
4288
4289 The GDB manual uses new, sexy Texinfo conditionals, rather than arcane
4290 M4 macros.  The new texinfo.tex is provided in this release.  Pre-built
4291 `info' files are also provided.  To build `info' files from scratch,
4292 you will need the latest `makeinfo' release, which will be available in
4293 a future texinfo-X.Y release.
4294
4295 *NOTE*  The new texinfo.tex can cause old versions of TeX to hang.
4296 We're not sure exactly which versions have this problem, but it has
4297 been seen in 3.0.  We highly recommend upgrading to TeX version 3.141
4298 or better.  If that isn't possible, there is a patch in
4299 `texinfo/tex3patch' that will modify `texinfo/texinfo.tex' to work
4300 around this problem.
4301
4302  * New features
4303
4304 GDB now supports array constants that can be used in expressions typed in by
4305 the user.  The syntax is `{element, element, ...}'.  Ie: you can now type
4306 `print {1, 2, 3}', and it will build up an array in memory malloc'd in
4307 the target program.
4308
4309 The new directory `gdb/sparclite' contains a program that demonstrates
4310 how the sparc-stub.c remote stub runs on a Fujitsu SPARClite processor.
4311
4312  * New native hosts supported
4313
4314 HP/PA-RISC under HPUX using GNU tools   hppa1.1-hp-hpux
4315 386 CPUs running SCO Unix 3.2v4         i386-unknown-sco3.2v4
4316
4317  * New targets supported
4318
4319 AMD 29k family via UDI                  a29k-amd-udi  or  udi29k
4320
4321  * New file formats supported
4322
4323 BFD now supports reading HP/PA-RISC executables (SOM file format?),
4324 HPUX core files, and SCO 3.2v2 core files.
4325
4326  * Major bug fixes
4327
4328 Attaching to processes now works again; thanks for the many bug reports.
4329
4330 We have also stomped on a bunch of core dumps caused by
4331 printf_filtered("%s") problems.
4332
4333 We eliminated a copyright problem on the rpc and ptrace header files
4334 for VxWorks, which was discovered at the last minute during the 4.7
4335 release.  You should now be able to build a VxWorks GDB.
4336
4337 You can now interrupt gdb while an attached process is running.  This
4338 will cause the attached process to stop, and give control back to GDB.
4339
4340 We fixed problems caused by using too many file descriptors
4341 for reading symbols from object files and libraries.  This was
4342 especially a problem for programs that used many (~100) shared
4343 libraries.
4344
4345 The `step' command now only enters a subroutine if there is line number
4346 information for the subroutine.  Otherwise it acts like the `next'
4347 command.  Previously, `step' would enter subroutines if there was
4348 any debugging information about the routine.  This avoids problems
4349 when using `cc -g1' on MIPS machines.
4350
4351  * Internal improvements
4352
4353 GDB's internal interfaces have been improved to make it easier to support
4354 debugging of multiple languages in the future.
4355
4356 GDB now uses a common structure for symbol information internally.
4357 Minimal symbols (derived from linkage symbols in object files), partial
4358 symbols (from a quick scan of debug information), and full symbols
4359 contain a common subset of information, making it easier to write
4360 shared code that handles any of them.
4361
4362  * New command line options
4363
4364 We now accept --silent as an alias for --quiet.
4365
4366  * Mmalloc licensing
4367
4368 The memory-mapped-malloc library is now licensed under the GNU Library
4369 General Public License.
4370
4371 *** Changes in GDB-4.7:
4372
4373  * Host/native/target split
4374
4375 GDB has had some major internal surgery to untangle the support for
4376 hosts and remote targets.  Now, when you configure GDB for a remote
4377 target, it will no longer load in all of the support for debugging
4378 local programs on the host.  When fully completed and tested, this will
4379 ensure that arbitrary host/target combinations are possible.
4380
4381 The primary conceptual shift is to separate the non-portable code in
4382 GDB into three categories.  Host specific code is required any time GDB
4383 is compiled on that host, regardless of the target.  Target specific
4384 code relates to the peculiarities of the target, but can be compiled on
4385 any host.  Native specific code is everything else:  it can only be
4386 built when the host and target are the same system.  Child process
4387 handling and core file support are two common `native' examples.
4388
4389 GDB's use of /proc for controlling Unix child processes is now cleaner.
4390 It has been split out into a single module under the `target_ops' vector,
4391 plus two native-dependent functions for each system that uses /proc.
4392
4393  * New hosts supported
4394
4395 HP/Apollo 68k (under the BSD domain)    m68k-apollo-bsd  or  apollo68bsd
4396 386 CPUs running various BSD ports      i386-unknown-bsd  or  386bsd
4397 386 CPUs running SCO Unix               i386-unknown-scosysv322  or  i386sco
4398
4399  * New targets supported
4400
4401 Fujitsu SPARClite                       sparclite-fujitsu-none  or  sparclite
4402 68030 and CPU32                         m68030-*-*, m68332-*-*
4403
4404  * New native hosts supported
4405
4406 386 CPUs running various BSD ports      i386-unknown-bsd  or  386bsd
4407     (386bsd is not well tested yet)
4408 386 CPUs running SCO Unix               i386-unknown-scosysv322  or  sco
4409
4410  * New file formats supported
4411
4412 BFD now supports COFF files for the Zilog Z8000 microprocessor.  It
4413 supports reading of `a.out.adobe' object files, which are an a.out
4414 format extended with minimal information about multiple sections.
4415
4416  * New commands
4417
4418 `show copying' is the same as the old `info copying'.
4419 `show warranty' is the same as `info warrantee'.
4420 These were renamed for consistency.  The old commands continue to work.
4421
4422 `info handle' is a new alias for `info signals'.
4423
4424 You can now define pre-command hooks, which attach arbitrary command
4425 scripts to any command.  The commands in the hook will be executed
4426 prior to the user's command.  You can also create a hook which will be
4427 executed whenever the program stops.  See gdb.texinfo.
4428
4429  * C++ improvements
4430
4431 We now deal with Cfront style name mangling, and can even extract type
4432 info from mangled symbols.  GDB can automatically figure out which
4433 symbol mangling style your C++ compiler uses.
4434
4435 Calling of methods and virtual functions has been improved as well.
4436
4437  * Major bug fixes
4438
4439 The crash that occured when debugging Sun Ansi-C compiled binaries is
4440 fixed.  This was due to mishandling of the extra N_SO stabs output
4441 by the compiler.
4442
4443 We also finally got Ultrix 4.2 running in house, and fixed core file
4444 support, with help from a dozen people on the net.
4445
4446 John M. Farrell discovered that the reason that single-stepping was so
4447 slow on all of the Mips based platforms (primarily SGI and DEC) was
4448 that we were trying to demangle and lookup a symbol used for internal
4449 purposes on every instruction that was being stepped through.  Changing
4450 the name of that symbol so that it couldn't be mistaken for a C++
4451 mangled symbol sped things up a great deal.
4452
4453 Rich Pixley sped up symbol lookups in general by getting much smarter
4454 about when C++ symbol mangling is necessary.  This should make symbol
4455 completion (TAB on the command line) much faster.  It's not as fast as
4456 we'd like, but it's significantly faster than gdb-4.6.
4457
4458  * AMD 29k support
4459
4460 A new user controllable variable 'call_scratch_address' can
4461 specify the location of a scratch area to be used when GDB
4462 calls a function in the target.  This is necessary because the
4463 usual method of putting the scratch area on the stack does not work
4464 in systems that have separate instruction and data spaces.
4465
4466 We integrated changes to support the 29k UDI (Universal Debugger
4467 Interface), but discovered at the last minute that we didn't have all
4468 of the appropriate copyright paperwork.  We are working with AMD to
4469 resolve this, and hope to have it available soon.
4470
4471  * Remote interfaces
4472
4473 We have sped up the remote serial line protocol, especially for targets
4474 with lots of registers.  It now supports a new `expedited status' ('T')
4475 message which can be used in place of the existing 'S' status message.
4476 This allows the remote stub to send only the registers that GDB
4477 needs to make a quick decision about single-stepping or conditional
4478 breakpoints, eliminating the need to fetch the entire register set for
4479 each instruction being stepped through.
4480
4481 The GDB remote serial protocol now implements a write-through cache for
4482 registers, only re-reading the registers if the target has run.
4483
4484 There is also a new remote serial stub for SPARC processors.  You can
4485 find it in gdb-4.7/gdb/sparc-stub.c.  This was written to support the
4486 Fujitsu SPARClite processor, but will run on any stand-alone SPARC
4487 processor with a serial port.
4488
4489  * Configuration
4490
4491 Configure.in files have become much easier to read and modify.  A new
4492 `table driven' format makes it more obvious what configurations are
4493 supported, and what files each one uses.
4494
4495  * Library changes
4496
4497 There is a new opcodes library which will eventually contain all of the
4498 disassembly routines and opcode tables.  At present, it only contains
4499 Sparc and Z8000 routines.  This will allow the assembler, debugger, and
4500 disassembler (binutils/objdump) to share these routines.
4501
4502 The libiberty library is now copylefted under the GNU Library General
4503 Public License.  This allows more liberal use, and was done so libg++
4504 can use it.  This makes no difference to GDB, since the Library License
4505 grants all the rights from the General Public License.
4506
4507  * Documentation
4508
4509 The file gdb-4.7/gdb/doc/stabs.texinfo is a (relatively) complete
4510 reference to the stabs symbol info used by the debugger.  It is (as far
4511 as we know) the only published document on this fascinating topic.  We
4512 encourage you to read it, compare it to the stabs information on your
4513 system, and send improvements on the document in general (to
4514 bug-gdb@prep.ai.mit.edu).
4515
4516 And, of course, many bugs have been fixed.
4517
4518
4519 *** Changes in GDB-4.6:
4520
4521  * Better support for C++ function names
4522
4523 GDB now accepts as input the "demangled form" of C++ overloaded function
4524 names and member function names, and can do command completion on such names
4525 (using TAB, TAB-TAB, and ESC-?).  The names have to be quoted with a pair of
4526 single quotes.  Examples are 'func (int, long)' and 'obj::operator==(obj&)'.
4527 Make use of command completion, it is your friend.
4528
4529 GDB also now accepts a variety of C++ mangled symbol formats.  They are
4530 the GNU g++ style, the Cfront (ARM) style, and the Lucid (lcc) style.
4531 You can tell GDB which format to use by doing a 'set demangle-style {gnu,
4532 lucid, cfront, auto}'.  'gnu' is the default.  Do a 'set demangle-style foo'
4533 for the list of formats.
4534
4535  * G++ symbol mangling problem
4536
4537 Recent versions of gcc have a bug in how they emit debugging information for
4538 C++ methods (when using dbx-style stabs).  The file 'gcc.patch' (in this
4539 directory) can be applied to gcc to fix the problem.  Alternatively, if you
4540 can't fix gcc, you can #define GCC_MANGLE_BUG when compling gdb/symtab.c. The
4541 usual symptom is difficulty with setting breakpoints on methods.  GDB complains
4542 about the method being non-existent.  (We believe that version 2.2.2 of GCC has
4543 this problem.)
4544
4545  * New 'maintenance' command
4546
4547 All of the commands related to hacking GDB internals have been moved out of
4548 the main command set, and now live behind the 'maintenance' command.  This
4549 can also be abbreviated as 'mt'.  The following changes were made:
4550
4551         dump-me ->              maintenance dump-me
4552         info all-breakpoints -> maintenance info breakpoints
4553         printmsyms ->           maintenance print msyms
4554         printobjfiles ->        maintenance print objfiles
4555         printpsyms ->           maintenance print psymbols
4556         printsyms ->            maintenance print symbols
4557
4558 The following commands are new:
4559
4560         maintenance demangle    Call internal GDB demangler routine to
4561                                 demangle a C++ link name and prints the result.
4562         maintenance print type  Print a type chain for a given symbol
4563
4564  * Change to .gdbinit file processing
4565
4566 We now read the $HOME/.gdbinit file before processing the argv arguments
4567 (e.g. reading symbol files or core files).  This allows global parameters to
4568 be set, which will apply during the symbol reading.  The ./.gdbinit is still
4569 read after argv processing.
4570
4571  * New hosts supported
4572
4573 Solaris-2.0 !!!                         sparc-sun-solaris2  or  sun4sol2
4574
4575 GNU/Linux support                       i386-unknown-linux  or  linux
4576
4577 We are also including code to support the HP/PA running BSD and HPUX.  This
4578 is almost guaranteed not to work, as we didn't have time to test or build it
4579 for this release.  We are including it so that the more adventurous (or
4580 masochistic) of you can play with it.  We also had major problems with the
4581 fact that the compiler that we got from HP doesn't support the -g option.
4582 It costs extra.
4583
4584  * New targets supported
4585
4586 Hitachi H8/300                          h8300-hitachi-hms  or  h8300hms
4587
4588  * More smarts about finding #include files
4589
4590 GDB now remembers the compilation directory for all include files, and for
4591 all files from which C is generated (like yacc and lex sources).  This
4592 greatly improves GDB's ability to find yacc/lex sources, and include files,
4593 especially if you are debugging your program from a directory different from
4594 the one that contains your sources.
4595
4596 We also fixed a bug which caused difficulty with listing and setting
4597 breakpoints in include files which contain C code.  (In the past, you had to
4598 try twice in order to list an include file that you hadn't looked at before.)
4599
4600  * Interesting infernals change
4601
4602 GDB now deals with arbitrary numbers of sections, where the symbols for each
4603 section must be relocated relative to that section's landing place in the
4604 target's address space.  This work was needed to support ELF with embedded
4605 stabs used by Solaris-2.0.
4606
4607  * Bug fixes (of course!)
4608
4609 There have been loads of fixes for the following things:
4610         mips, rs6000, 29k/udi, m68k, g++, type handling, elf/dwarf, m88k,
4611         i960, stabs, DOS(GO32), procfs, etc...
4612
4613 See the ChangeLog for details.
4614
4615 *** Changes in GDB-4.5:
4616
4617  * New machines supported (host and target)
4618
4619 IBM RS6000 running AIX                  rs6000-ibm-aix  or rs6000
4620
4621 SGI Irix-4.x                            mips-sgi-irix4  or iris4
4622
4623  * New malloc package
4624
4625 GDB now uses a new memory manager called mmalloc, based on gmalloc.
4626 Mmalloc is capable of handling mutiple heaps of memory.  It is also
4627 capable of saving a heap to a file, and then mapping it back in later.
4628 This can be used to greatly speedup the startup of GDB by using a
4629 pre-parsed symbol table which lives in a mmalloc managed heap.  For
4630 more details, please read mmalloc/mmalloc.texi.
4631
4632  * info proc
4633
4634 The 'info proc' command (SVR4 only) has been enhanced quite a bit.  See
4635 'help info proc' for details.
4636
4637  * MIPS ecoff symbol table format
4638
4639 The code that reads MIPS symbol table format is now supported on all hosts.
4640 Thanks to MIPS for releasing the sym.h and symconst.h files to make this
4641 possible.
4642
4643  * File name changes for MS-DOS
4644
4645 Many files in the config directories have been renamed to make it easier to
4646 support GDB on MS-DOSe systems (which have very restrictive file name
4647 conventions :-( ).  MS-DOSe host support (under DJ Delorie's GO32
4648 environment) is close to working but has some remaining problems.  Note
4649 that debugging of DOS programs is not supported, due to limitations
4650 in the ``operating system'', but it can be used to host cross-debugging.
4651
4652  * Cross byte order fixes
4653
4654 Many fixes have been made to support cross debugging of Sparc and MIPS
4655 targets from hosts whose byte order differs.
4656
4657  * New -mapped and -readnow options
4658
4659 If memory-mapped files are available on your system through the 'mmap'
4660 system call, you can use the -mapped option on the `file' or
4661 `symbol-file' commands to cause GDB to write the symbols from your
4662 program into a reusable file.  If the program you are debugging is
4663 called `/path/fred', the mapped symbol file will be `./fred.syms'.
4664 Future GDB debugging sessions will notice the presence of this file,
4665 and will quickly map in symbol information from it, rather than reading
4666 the symbol table from the executable program.  Using the '-mapped'
4667 option in a GDB `file' or `symbol-file' command has the same effect as
4668 starting GDB with the '-mapped' command-line option.
4669
4670 You can cause GDB to read the entire symbol table immediately by using
4671 the '-readnow' option with any of the commands that load symbol table
4672 information (or on the GDB command line).  This makes the command
4673 slower, but makes future operations faster.
4674
4675 The -mapped and -readnow options are typically combined in order to
4676 build a `fred.syms' file that contains complete symbol information.
4677 A simple GDB invocation to do nothing but build a `.syms' file for future
4678 use is:
4679
4680         gdb -batch -nx -mapped -readnow programname
4681
4682 The `.syms' file is specific to the host machine on which GDB is run.
4683 It holds an exact image of GDB's internal symbol table.  It cannot be
4684 shared across multiple host platforms.
4685
4686  * longjmp() handling
4687
4688 GDB is now capable of stepping and nexting over longjmp(), _longjmp(), and
4689 siglongjmp() without losing control.  This feature has not yet been ported to
4690 all systems.  It currently works on many 386 platforms, all MIPS-based
4691 platforms (SGI, DECstation, etc), and Sun3/4.
4692
4693  * Solaris 2.0
4694
4695 Preliminary work has been put in to support the new Solaris OS from Sun.  At
4696 this time, it can control and debug processes, but it is not capable of
4697 reading symbols.
4698
4699  * Bug fixes
4700
4701 As always, many many bug fixes.  The major areas were with g++, and mipsread.
4702 People using the MIPS-based platforms should experience fewer mysterious
4703 crashes and trashed symbol tables.
4704
4705 *** Changes in GDB-4.4:
4706
4707  * New machines supported (host and target)
4708
4709 SCO Unix on i386 IBM PC clones          i386-sco-sysv   or  i386sco
4710         (except core files)
4711 BSD Reno on Vax                         vax-dec-bsd
4712 Ultrix on Vax                           vax-dec-ultrix
4713
4714  * New machines supported (target)
4715
4716 AMD 29000 embedded, using EBMON         a29k-none-none
4717
4718  * C++ support
4719
4720 GDB continues to improve its handling of C++.  `References' work better.
4721 The demangler has also been improved, and now deals with symbols mangled as
4722 per the Annotated C++ Reference Guide.
4723
4724 GDB also now handles `stabs' symbol information embedded in MIPS
4725 `ecoff' symbol tables.  Since the ecoff format was not easily
4726 extensible to handle new languages such as C++, this appeared to be a
4727 good way to put C++ debugging info into MIPS binaries.  This option
4728 will be supported in the GNU C compiler, version 2, when it is
4729 released.
4730
4731  * New features for SVR4
4732
4733 GDB now handles SVR4 shared libraries, in the same fashion as SunOS
4734 shared libraries.  Debugging dynamically linked programs should present
4735 only minor differences from debugging statically linked programs.
4736
4737 The `info proc' command will print out information about any process
4738 on an SVR4 system (including the one you are debugging).  At the moment,
4739 it prints the address mappings of the process.
4740
4741 If you bring up GDB on another SVR4 system, please send mail to
4742 bug-gdb@prep.ai.mit.edu to let us know what changes were reqired (if any).
4743
4744  * Better dynamic linking support in SunOS
4745
4746 Reading symbols from shared libraries which contain debugging symbols
4747 now works properly.  However, there remain issues such as automatic
4748 skipping of `transfer vector' code during function calls, which
4749 make it harder to debug code in a shared library, than to debug the
4750 same code linked statically.
4751
4752  * New Getopt
4753
4754 GDB is now using the latest `getopt' routines from the FSF.  This
4755 version accepts the -- prefix for options with long names.  GDB will
4756 continue to accept the old forms (-option and +option) as well.
4757 Various single letter abbreviations for options have been explicity
4758 added to the option table so that they won't get overshadowed in the
4759 future by other options that begin with the same letter.
4760
4761  * Bugs fixed
4762
4763 The `cleanup_undefined_types' bug that many of you noticed has been squashed.
4764 Many assorted bugs have been handled.  Many more remain to be handled.
4765 See the various ChangeLog files (primarily in gdb and bfd) for details.
4766
4767
4768 *** Changes in GDB-4.3:
4769
4770  * New machines supported (host and target)
4771
4772 Amiga 3000 running Amix                 m68k-cbm-svr4   or  amix
4773 NCR 3000 386 running SVR4               i386-ncr-svr4   or  ncr3000
4774 Motorola Delta 88000 running Sys V      m88k-motorola-sysv  or  delta88
4775
4776  * Almost SCO Unix support
4777
4778 We had hoped to support:
4779 SCO Unix on i386 IBM PC clones          i386-sco-sysv   or  i386sco
4780 (except for core file support), but we discovered very late in the release
4781 that it has problems with process groups that render gdb unusable.  Sorry
4782 about that.  I encourage people to fix it and post the fixes.
4783
4784  * Preliminary ELF and DWARF support
4785
4786 GDB can read ELF object files on System V Release 4, and can handle
4787 debugging records for C, in DWARF format, in ELF files.  This support
4788 is preliminary.  If you bring up GDB on another SVR4 system, please
4789 send mail to bug-gdb@prep.ai.mit.edu to let us know what changes were
4790 reqired (if any).
4791
4792  * New Readline
4793
4794 GDB now uses the latest `readline' library.  One user-visible change
4795 is that two tabs will list possible command completions, which previously
4796 required typing M-? (meta-question mark, or ESC ?).
4797
4798  * Bugs fixed
4799
4800 The `stepi' bug that many of you noticed has been squashed.
4801 Many bugs in C++ have been handled.  Many more remain to be handled.
4802 See the various ChangeLog files (primarily in gdb and bfd) for details.
4803
4804  * State of the MIPS world (in case you wondered):
4805
4806 GDB can understand the symbol tables emitted by the compilers
4807 supplied by most vendors of MIPS-based machines, including DEC.  These
4808 symbol tables are in a format that essentially nobody else uses.
4809
4810 Some versions of gcc come with an assembler post-processor called
4811 mips-tfile.  This program is required if you want to do source-level
4812 debugging of gcc-compiled programs.  I believe FSF does not ship
4813 mips-tfile with gcc version 1, but it will eventually come with gcc
4814 version 2.
4815
4816 Debugging of g++ output remains a problem.  g++ version 1.xx does not
4817 really support it at all.  (If you're lucky, you should be able to get
4818 line numbers and stack traces to work, but no parameters or local
4819 variables.)  With some work it should be possible to improve the
4820 situation somewhat.
4821
4822 When gcc version 2 is released, you will have somewhat better luck.
4823 However, even then you will get confusing results for inheritance and
4824 methods.
4825
4826 We will eventually provide full debugging of g++ output on
4827 DECstations.  This will probably involve some kind of stabs-in-ecoff
4828 encapulation, but the details have not been worked out yet.
4829
4830
4831 *** Changes in GDB-4.2:
4832
4833  *  Improved configuration
4834
4835 Only one copy of `configure' exists now, and it is not self-modifying.
4836 Porting BFD is simpler.  
4837
4838  *  Stepping improved
4839
4840 The `step' and `next' commands now only stop at the first instruction
4841 of a source line.  This prevents the multiple stops that used to occur
4842 in switch statements, for-loops, etc.  `Step' continues to stop if a
4843 function that has debugging information is called within the line.
4844
4845  *  Bug fixing
4846
4847 Lots of small bugs fixed.  More remain.
4848
4849  *  New host supported (not target)
4850
4851 Intel 386 PC clone running Mach         i386-none-mach
4852
4853
4854 *** Changes in GDB-4.1:
4855
4856  *  Multiple source language support
4857
4858 GDB now has internal scaffolding to handle several source languages.
4859 It determines the type of each source file from its filename extension,
4860 and will switch expression parsing and number formatting to match the
4861 language of the function in the currently selected stack frame.
4862 You can also specifically set the language to be used, with
4863 `set language c' or `set language modula-2'.
4864
4865  *  GDB and Modula-2
4866
4867 GDB now has preliminary support for the GNU Modula-2 compiler,
4868 currently under development at the State University of New York at
4869 Buffalo.  Development of both GDB and the GNU Modula-2 compiler will
4870 continue through the fall of 1991 and into 1992.
4871
4872 Other Modula-2 compilers are currently not supported, and attempting to
4873 debug programs compiled with them will likely result in an error as the
4874 symbol table is read.  Feel free to work on it, though!
4875
4876 There are hooks in GDB for strict type checking and range checking,
4877 in the `Modula-2 philosophy', but they do not currently work.
4878
4879  * set write on/off
4880
4881 GDB can now write to executable and core files (e.g. patch
4882 a variable's value).   You must turn this switch on, specify
4883 the file ("exec foo" or "core foo"), *then* modify it, e.g.
4884 by assigning a new value to a variable.  Modifications take
4885 effect immediately.
4886
4887  * Automatic SunOS shared library reading
4888
4889 When you run your program, GDB automatically determines where its
4890 shared libraries (if any) have been loaded, and reads their symbols.
4891 The `share' command is no longer needed.  This also works when
4892 examining core files.
4893
4894  * set listsize
4895
4896 You can specify the number of lines that the `list' command shows.
4897 The default is 10.
4898
4899  * New machines supported (host and target)
4900
4901 SGI Iris (MIPS) running Irix V3:        mips-sgi-irix   or  iris
4902 Sony NEWS (68K) running NEWSOS 3.x:     m68k-sony-sysv  or  news
4903 Ultracomputer (29K) running Sym1:       a29k-nyu-sym1   or  ultra3
4904
4905  * New hosts supported (not targets)
4906
4907 IBM RT/PC:                              romp-ibm-aix    or  rtpc
4908
4909  * New targets supported (not hosts)
4910
4911 AMD 29000 embedded with COFF            a29k-none-coff
4912 AMD 29000 embedded with a.out           a29k-none-aout
4913 Ultracomputer remote kernel debug       a29k-nyu-kern
4914
4915  * New remote interfaces
4916
4917 AMD 29000 Adapt
4918 AMD 29000 Minimon
4919
4920
4921 *** Changes in GDB-4.0:
4922
4923  *  New Facilities
4924
4925 Wide output is wrapped at good places to make the output more readable.
4926
4927 Gdb now supports cross-debugging from a host machine of one type to a
4928 target machine of another type.  Communication with the target system
4929 is over serial lines.  The ``target'' command handles connecting to the
4930 remote system; the ``load'' command will download a program into the
4931 remote system.  Serial stubs for the m68k and i386 are provided.  Gdb
4932 also supports debugging of realtime processes running under VxWorks,
4933 using SunRPC Remote Procedure Calls over TCP/IP to talk to a debugger
4934 stub on the target system.
4935
4936 New CPUs supported include the AMD 29000 and Intel 960.
4937
4938 GDB now reads object files and symbol tables via a ``binary file'' 
4939 library, which allows a single copy of GDB to debug programs of multiple
4940 object file types such as a.out and coff.
4941
4942 There is now a GDB reference card in "doc/refcard.tex".  (Make targets
4943 refcard.dvi and refcard.ps are available to format it).
4944
4945
4946  *  Control-Variable user interface simplified
4947
4948 All variables that control the operation of the debugger can be set
4949 by the ``set'' command, and displayed by the ``show'' command.
4950
4951 For example, ``set prompt new-gdb=>'' will change your prompt to new-gdb=>.
4952 ``Show prompt'' produces the response:
4953 Gdb's prompt is new-gdb=>.
4954
4955 What follows are the NEW set commands.  The command ``help set'' will
4956 print a complete list of old and new set commands.  ``help set FOO''
4957 will give a longer description of the variable FOO.  ``show'' will show
4958 all of the variable descriptions and their current settings.
4959
4960 confirm on/off:  Enables warning questions for operations that are
4961                  hard to recover from, e.g. rerunning the program while
4962                  it is already running.  Default is ON.
4963
4964 editing on/off:  Enables EMACS style command line editing 
4965                  of input.  Previous lines can be recalled with 
4966                  control-P, the current line can be edited with control-B,
4967                  you can search for commands with control-R, etc.
4968                  Default is ON.
4969
4970 history filename NAME:  NAME is where the gdb command history 
4971                         will be stored.  The default is .gdb_history,
4972                         or the value of the environment variable
4973                         GDBHISTFILE.
4974
4975 history size N:  The size, in commands, of the command history.  The 
4976                  default is 256, or the value of the environment variable
4977                  HISTSIZE.
4978
4979 history save on/off: If this value is set to ON, the history file will
4980                       be saved after exiting gdb.  If set to OFF, the 
4981                       file will not be saved.  The default is OFF.
4982
4983 history expansion on/off: If this value is set to ON, then csh-like 
4984                           history expansion will be performed  on 
4985                           command line input.  The default is OFF.
4986
4987 radix N:  Sets the default radix for input and output.  It can be set
4988           to 8, 10, or 16.  Note that the argument to "radix" is interpreted
4989           in the current radix, so "set radix 10" is always a no-op.
4990
4991 height N: This integer value is the number of lines on a page. Default
4992           is 24, the current `stty rows'' setting, or the ``li#''
4993           setting from the termcap entry matching the environment
4994           variable TERM.
4995
4996 width N:  This integer value is the number of characters on a line.
4997           Default is 80, the current `stty cols'' setting, or the ``co#''
4998           setting from the termcap entry matching the environment
4999           variable TERM.
5000
5001 Note: ``set screensize'' is obsolete. Use ``set height'' and
5002 ``set width'' instead.
5003
5004 print address on/off:  Print memory addresses in various command displays,
5005                       such as stack traces and structure values.  Gdb looks
5006                       more ``symbolic'' if you turn this off; it looks more
5007                       ``machine level'' with it on.  Default is ON.
5008
5009 print array on/off:  Prettyprint arrays.  New convenient format!  Default 
5010                     is OFF.
5011
5012 print demangle on/off:   Print C++ symbols in "source" form if on,
5013                         "raw" form if off.
5014
5015 print asm-demangle on/off:  Same, for assembler level printouts
5016                         like instructions.
5017
5018 print vtbl on/off:  Prettyprint C++ virtual function tables.  Default is OFF.
5019
5020
5021  *  Support for Epoch Environment.
5022
5023 The epoch environment is a version of Emacs v18 with windowing.  One
5024 new command, ``inspect'', is identical to ``print'', except that if you
5025 are running in the epoch environment, the value is printed in its own
5026 window.
5027
5028
5029  *  Support for Shared Libraries
5030
5031 GDB can now debug programs and core files that use SunOS shared libraries.
5032 Symbols from a shared library cannot be referenced
5033 before the shared library has been linked with the program (this
5034 happens after you type ``run'' and before the function main() is entered).
5035 At any time after this linking (including when examining core files
5036 from dynamically linked programs), gdb reads the symbols from each
5037 shared library when you type the ``sharedlibrary'' command.
5038 It can be abbreviated ``share''.
5039
5040 sharedlibrary REGEXP:  Load shared object library symbols for files 
5041                        matching a unix regular expression.  No argument
5042                        indicates to load symbols for all shared libraries.
5043
5044 info sharedlibrary:  Status of loaded shared libraries.
5045
5046
5047  *  Watchpoints
5048
5049 A watchpoint stops execution of a program whenever the value of an
5050 expression changes.  Checking for this slows down execution
5051 tremendously whenever you are in the scope of the expression, but is
5052 quite useful for catching tough ``bit-spreader'' or pointer misuse
5053 problems.  Some machines such as the 386 have hardware for doing this
5054 more quickly, and future versions of gdb will use this hardware.
5055
5056 watch EXP:  Set a watchpoint (breakpoint) for an expression.
5057
5058 info watchpoints:  Information about your watchpoints.
5059
5060 delete N:   Deletes watchpoint number N (same as breakpoints).
5061 disable N:  Temporarily turns off watchpoint number N (same as breakpoints).
5062 enable N:   Re-enables watchpoint number N (same as breakpoints).
5063
5064
5065  *  C++ multiple inheritance
5066
5067 When used with a GCC version 2 compiler, GDB supports multiple inheritance
5068 for C++ programs.
5069
5070  *  C++ exception handling
5071
5072 Gdb now supports limited C++ exception handling.  Besides the existing
5073 ability to breakpoint on an exception handler, gdb can breakpoint on
5074 the raising of an exception (before the stack is peeled back to the
5075 handler's context).
5076
5077 catch FOO:  If there is a FOO exception handler in the dynamic scope,
5078             set a breakpoint to catch exceptions which may be raised there.
5079             Multiple exceptions (``catch foo bar baz'') may be caught.
5080
5081 info catch:  Lists all exceptions which may be caught in the
5082              current stack frame.
5083
5084
5085  *  Minor command changes
5086
5087 The command ``call func (arg, arg, ...)'' now acts like the print
5088 command, except it does not print or save a value if the function's result
5089 is void.  This is similar to dbx usage.
5090
5091 The ``up'' and ``down'' commands now always print the frame they end up
5092 at; ``up-silently'' and `down-silently'' can be used in scripts to change
5093 frames without printing.
5094
5095  *  New directory command
5096
5097 'dir' now adds directories to the FRONT of the source search path.
5098 The path starts off empty.  Source files that contain debug information
5099 about the directory in which they were compiled can be found even
5100 with an empty path; Sun CC and GCC include this information.  If GDB can't
5101 find your source file in the current directory, type "dir .".
5102
5103  * Configuring GDB for compilation
5104
5105 For normal use, type ``./configure host''.  See README or gdb.texinfo
5106 for more details.
5107
5108 GDB now handles cross debugging.  If you are remotely debugging between 
5109 two different machines, type ``./configure host -target=targ''.
5110 Host is the machine where GDB will run; targ is the machine
5111 where the program that you are debugging will run.